Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for regular (0.13 sec)

  1. pkg/controller/podautoscaler/replica_calculator_test.go

    			pods:             []*v1.Pod{},
    			container:        "",
    			resource:         v1.ResourceCPU,
    			expectedRequests: map[string]int64{},
    			expectedError:    nil,
    		},
    		{
    			name: "pod with regular containers",
    			pods: []*v1.Pod{{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      testPod,
    					Namespace: testNamespace,
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  2. src/os/os_test.go

    	}
    	if fi.Mode()&ModeCharDevice == 0 {
    		t.Errorf(pre+"wrong file mode %q: ModeCharDevice is not set", fi.Mode())
    	}
    	if fi.Mode().IsRegular() {
    		t.Errorf(pre+"wrong file mode %q: IsRegular returns true", fi.Mode())
    	}
    }
    
    func testDevNullFile(t *testing.T, devNullName string) {
    	f, err := Open(devNullName)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

                """
            ),
        ] = True,
    ) -> Any:
        """
        Declare a FastAPI Security dependency.
    
        The only difference with a regular dependency is that it can declare OAuth2
        scopes that will be integrated with OpenAPI and the automatic UI docs (by default
        at `/docs`).
    
        It takes a single "dependable" callable (like a function).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeToken.java

        }
        if (runtimeType instanceof GenericArrayType) {
          return of(supertype).isSupertypeOfArray((GenericArrayType) runtimeType);
        }
        // Proceed to regular Type subtype check
        if (supertype instanceof Class) {
          return this.someRawTypeIsSubclassOf((Class<?>) supertype);
        } else if (supertype instanceof ParameterizedType) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    // the merge happens in a stack location (a "stack" phi).
    //
    // A register phi must have the phi and all of its inputs allocated to the
    // same register. Register phis are spilled similarly to regular ops.
    //
    // A stack phi must have the phi and all of its inputs allocated to the same
    // stack location. Stack phis start out life already spilled - each phi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "time": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  7. cmd/admin-handlers-users.go

    	}
    
    	if globalIAMSys.GetUsersSysType() == MinIOUsersSysType && targetUser != cred.AccessKey {
    		// For internal IDP, ensure that the targetUser's parent account exists.
    		// It could be a regular user account or the root account.
    		_, isRegularUser := globalIAMSys.GetUser(ctx, targetUser)
    		if !isRegularUser && targetUser != globalActiveCred.AccessKey {
    			apiErr := toAdminAPIErr(ctx, errNoSuchUser)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    		Subject:      pkix.Name{CommonName: "test"},
    		ExtraExtensions: []pkix.Extension{
    			{
    				Id: asn1.ObjectIdentifier{1, 2, 3},
    				// Ballast to inflate the certificate beyond the
    				// regular handshake record size.
    				Value: make([]byte, 65536),
    			},
    		},
    	}
    	cert, err := x509.CreateCertificate(rand.Reader, tmpl, tmpl, k.Public(), k)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				TypeReq:  typeReq,
    			}
    
    		case 'T':
    			st.advance(1)
    			typ := st.demangleType(false)
    			req = &TypeRequirement{Type: typ}
    
    		case 'Q':
    			st.advance(1)
    			// We parse a regular expression rather than a
    			// constraint expression.
    			expr := st.expression()
    			req = &NestedRequirement{Constraint: expr}
    
    		default:
    			st.fail("unrecognized requirement code")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	// just the authority section of a URL. This information should go in req.URL.Host.
    	//
    	// The net/rpc package also uses CONNECT, but there the parameter is a path
    	// that starts with a slash. It can be parsed with the regular URL parser,
    	// and the path will end up in req.URL.Path, where it needs to be in order for
    	// RPC to work.
    	justAuthority := req.Method == "CONNECT" && !strings.HasPrefix(rawurl, "/")
    	if justAuthority {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top