Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for paused (0.14 sec)

  1. fastapi/applications.py

                    """
                    A list of tags used by OpenAPI, these are the same `tags` you can set
                    in the *path operations*, like:
    
                    * `@app.get("/users/", tags=["users"])`
                    * `@app.get("/items/", tags=["items"])`
    
                    The order of the tags can be used to specify the order shown in
                    tools like Swagger UI, used in the automatic path `/docs`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * cancelled.
         *
         * <p>If the combiningCallable throws an {@code ExecutionException}, the cause of the thrown
         * {@code ExecutionException} will be extracted and used as the failure of the derived step.
         *
         * <p>If the combiningCallable throws any other exception, it will be used as the failure of the
         * derived step.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/eviction_manager_test.go

    	val := resource.MustParse(nodeAvailablePIDs)
    	availablePIDs := int64(val.Value())
    
    	parsed := resource.MustParse(numberOfRunningProcesses)
    	NumberOfRunningProcesses := int64(parsed.Value())
    	result := &statsapi.Summary{
    		Node: statsapi.NodeStats{
    			Rlimit: &statsapi.RlimitStats{
    				MaxPID:                &availablePIDs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	if len(out) > 0 {
    		// Filter out useless linker warnings caused by bugs outside Go.
    		// See also cmd/link/internal/ld's hostlink method.
    		var save [][]byte
    		var skipLines int
    		for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    			// golang.org/issue/26073 - Apple Xcode bug
    			if bytes.Contains(line, []byte("ld: warning: text-based stub file")) {
    				continue
    			}
    
    			if skipLines > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    	cert, err := ParseCertificate(pemBlock.Bytes)
    	if err != nil {
    		t.Fatalf("Failed to parse certificate: %s", err)
    	}
    	if cert.PublicKeyAlgorithm != DSA {
    		t.Errorf("Parsed key algorithm was not DSA")
    	}
    	parsedKey, ok := cert.PublicKey.(*dsa.PublicKey)
    	if !ok {
    		t.Fatalf("Parsed key was not a DSA key: %s", err)
    	}
    	if expectedKey.Y.Cmp(parsedKey.Y) != 0 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // argument frame type as stackArgsType, so that call can execute appropriate
    // write barriers during the copy.
    //
    // Arguments passed through to call do not escape. The type is used only in a
    // very limited callee of call, the stackArgs are copied, and regArgs is only
    // used in the call frame.
    //
    //go:noescape
    //go:linkname call runtime.reflectcall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/net/http/server.go

    		// send on the CloseNotify channel and cancel the context here,
    		// but the behavior was documented as only "may", and we only
    		// did that because that's how CloseNotify accidentally behaved
    		// in very early Go releases prior to context support. Once we
    		// added context support, people used a Handler's
    		// Request.Context() and passed it along. Having that context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    After they are evaluated, the parameters of the call are passed by value to the function
    and the called function begins execution.
    The return parameters of the function are passed by value
    back to the caller when the function returns.
    </p>
    
    <p>
    Calling a <code>nil</code> function value
    causes a <a href="#Run_time_panics">run-time panic</a>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				float64(10.0), // val6, double type, parsed from decimal literal
    				int64(10),     // val7, number type, parsed from integer literal
    				int64(10),     // val8, float type, parsed from integer literal
    				int64(10),     // val9, double type, parsed from integer literal
    			),
    			schema: schemas(integerType, integerType, integerType, numberType, floatType, doubleType, numberType, floatType, doubleType),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // The -x flag causes clean to print remove commands as it executes them.
    //
    // The -cache flag causes clean to remove the entire go build cache.
    //
    // The -testcache flag causes clean to expire all test results in the
    // go build cache.
    //
    // The -modcache flag causes clean to remove the entire module
    // download cache, including unpacked source code of versioned
    // dependencies.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top