Questions tagged [status]

A status is a summary of the current state of a process, an application, a function or an object, or a response code about the execution of a request or a function (e.g., return code or error code). For status bar, use the tag 'statusbar'. For http-status, use tag 'http-status-codes'

A status is a summary of the current state of a process, an application, a function or an object. It can also be a response code related to the execution of a request or a function, typically a return code, or an error code.

Disambiguation:

  • Do not use for question related status bars, but use instead.
  • For HTTP requests, prefer or the tag http-status-code-xxx where xxx is a numeric response code.

External references:

  • Exit status on Wikipedia for status of a process execution
1447 questions
13
votes
3 answers

How to get status code in successful response Volley Android

I would like to ask how to get status code when using Volley. I have following code: StringRequest stringRequest = new StringRequest(Request.Method.GET, url, new Response.Listener() { @Override …
1daemon1
  • 1,001
  • 3
  • 11
  • 29
13
votes
2 answers

iPhone/iOS Status bar not hiding in Xcode project

Hi I have tried the following but am unable to remove the status bar from my application: Set status bar is initially hidden to YES in plist 'Hide during application launch' to ticked in Project General settings Set status bar to 'none' in the…
Zigglzworth
  • 6,645
  • 9
  • 68
  • 107
13
votes
6 answers

Jenkins returned status code 128

I am trying to setup Jenkins with BitBucket GIT repository, but the Jenkins console always gives me this error code: Started by user Dakado Building in workspace /var/lib/jenkins/workspace/TEST852 Fetching changes from the remote Git…
Dakado
  • 143
  • 1
  • 2
  • 9
13
votes
2 answers

Use Boto to get ec2 instance status

I'm using instace.update() to get the status, which returns stopped, running or ... But there is another status in the ec2 web interface which also shows it's initializing or ... 2/2 checks passed. Is there a way to get the status of initializing?..
user2836163
  • 411
  • 1
  • 6
  • 16
12
votes
1 answer

Fixed-error: How to Solve The return type 'StreamController' isn't a 'Stream', as defined by anonymous closure error

I was following the below tutorial for connectivity status based on internet connection. link : https://www.filledstacks.com/post/make-your-flutter-app-network-aware-using-provider-and-connectivity-status/ now the issue is, then i am trying to…
princeoo7
  • 1,071
  • 3
  • 21
  • 44
12
votes
1 answer

How to perform status checks in github repository

I have a GitHub repository in which I protected one branch with the new feature of Protected Branches. Now my problem is that I wish to perform the status check in the system and then commit and push it to the GitHub repo. Problem: where do I…
Fr_nkenstien
  • 1,923
  • 7
  • 33
  • 66
11
votes
7 answers

How to set bot's status

So I'm trying to make my bot's streaming to be with depression but I've tried multiple things and they don't work. I've tried these methods: client.user.setPresence({ game: { name: 'with depression' }, status: 'online' }); bot.user.setGame('with…
Modular
  • 139
  • 3
  • 3
  • 7
11
votes
11 answers

PHP system() - return status is always 0

I need to get the following scripts running. // File: script_a.php // File: script_b.php Now my problem: On my windows system running script_b.php shows…
Sebastian Schmidt
  • 1,078
  • 7
  • 17
11
votes
2 answers

Display notifications in Gnome Shell

How can i send notifications in GNOME through a python program? I have tried python bindings like pynotify,python-notify2, but the all give pop-up notifications which are temporary. Is there any python bindings to give notifications on the message…
rohitnambisan99
  • 121
  • 2
  • 6
10
votes
1 answer

Q: Sourcetree error : 'git status' failed with code -1"

Sourcetree showing this error 'git status' failed with code -1" while trying access project from bookmark, also I can't clone any other project from remote list or manual by url. SSH connection is good. Command ssh -T git@github.com showing - Hi…
devkamil
  • 351
  • 3
  • 6
10
votes
3 answers

Where can I find colored indicators for use in Cocoa?

I need color indicators. Need to be able to do green, yellow and red. Anybody know how? I looked through the available icons/etc in Interface Builder but did not see anything like them. Like this: green indicator…
Allyn
  • 20,271
  • 16
  • 57
  • 68
10
votes
2 answers

Any idea about QQ API (Chinese facebook,twitter)?

Is there any API for QQ services (www.qq.com)? Or any developer program? Is there any way to integrate their services in third party apps? I am interested in their microblog, photo album and status services. I translated and searched but couldn't…
Morison
  • 1,145
  • 3
  • 18
  • 35
10
votes
2 answers

Magento Order State vs. Status

I'm having a fun time figuring out the difference between an order's 'state' versus it's 'status' in Magento. We have a custom flow set up to send out orders to 3rd party fulfillment and we also have some custom logic to check for potentially…
Chris Forrette
  • 3,194
  • 2
  • 28
  • 37
10
votes
7 answers

How to check the status of all git repositories at once?

Introduction In order to check the status of git repositores, git status could be issued from the root of a repository. C:\path\to\git_repositories\git_repo_1>git status On branch master Your branch is up-to-date with 'origin/master'. nothing to…
030
  • 10,842
  • 12
  • 78
  • 123
10
votes
5 answers

Django test always returning 301

I know there are few same posts with this problem, but they doesn't helped for me. I'm always got a 301 status in tests: self.client.get('/') and this: self.client.get('/admin/') return: AssertionError: 301 != 200 All urls will returning 301…
Arti
  • 7,356
  • 12
  • 57
  • 122