Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for isActive (0.4 sec)

  1. tests/test_tutorial/test_security/test_tutorial005_an_py310.py

        )
        response = client.get(
            "/users/me", headers={"Authorization": f"Bearer {access_token}"}
        )
        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Inactive user"}
    
    
    @needs_py310
    def test_read_items(client: TestClient):
        access_token = get_access_token(scope="me items", client=client)
        response = client.get(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_security/test_tutorial005_an_py39.py

        )
        response = client.get(
            "/users/me", headers={"Authorization": f"Bearer {access_token}"}
        )
        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Inactive user"}
    
    
    @needs_py39
    def test_read_items(client: TestClient):
        access_token = get_access_token(scope="me items", client=client)
        response = client.get(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. pilot/pkg/features/experimental.go

    		"If enabled, Istio will create clusters only when there are requests. This will save memory and CPU cycles"+
    			" in cases where there are lots of inactive clusters and > 1 worker thread").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/trace/goroutines.go

    <br>
    <table>
      <tr>
        <th>Start location</th>
    	<th>Count</th>
    	<th>Total execution time</th>
      </tr>
    {{range $}}
      <tr>
        <td><code><a href="/goroutine?name={{.Name}}">{{or .Name "(Inactive, no stack trace sampled)"}}</a></code></td>
    	<td>{{.N}}</td>
    	<td>{{.ExecTime}}</td>
      </tr>
    {{end}}
    </table>
    </body>
    </html>
    `))
    
    // GoroutineHandler creates a handler that serves information about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	"path/filepath"
    	"strings"
    	"time"
    
    	"golang.org/x/telemetry/internal/config"
    	"golang.org/x/telemetry/internal/counter"
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    // reports generates reports from inactive count files
    func (u *uploader) reports(todo *work) ([]string, error) {
    	if mode, _ := u.dir.Mode(); mode == "off" {
    		return nil, nil // no reports
    	}
    	thisInstant := u.startTime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    			return errors.Wrap(err, "error printing files on dryrun")
    		}
    		return nil
    	}
    
    	// Try to start the kubelet service in case it's inactive
    	fmt.Println("[kubelet-start] Starting the kubelet")
    	kubeletphase.TryStartKubelet()
    
    	// Now the kubelet will perform the TLS Bootstrap, transforming /etc/kubernetes/bootstrap-kubelet.conf to /etc/kubernetes/kubelet.conf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Service.java

       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
       */
      enum State {
        /** A service in this state is inactive. It does minimal work and consumes minimal resources. */
        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/inline.go

    look for link or image:
    
    	find topmost [ or ![
    	if none, emit literal ]
    	if its inactive, remove and emit literal ]
    	parse ahead to look for rest of link; if none, remove and emit literal ]
    	run process emphasis on the interior,
    	remove opener
    	if this was a link (not an image), set all [ before opener to inactive, to avoid links inside links
    
    process emphasis
    
    	walk forward in list to find a closer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Service.java

       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
       */
      enum State {
        /** A service in this state is inactive. It does minimal work and consumes minimal resources. */
        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. src/internal/trace/testtrace/validation.go

    		case trace.EventRangeActive:
    			if !v.hasRange(r.Scope, r.Name) {
    				v.addRange(r.Scope, r.Name)
    			}
    		case trace.EventRangeEnd:
    			if !v.hasRange(r.Scope, r.Name) {
    				e.Errorf("inactive range %q on %v ended", r.Name, r.Scope)
    			}
    			v.deleteRange(r.Scope, r.Name)
    		}
    	case trace.EventTaskBegin:
    		// Validate task begin.
    		t := ev.Task()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top