Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for disallows (0.23 sec)

  1. pkg/registry/batch/job/strategy_test.go

    					Parallelism:    ptr.To[int32](1),
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Spec.Parallelism = ptr.To[int32](2)
    			},
    		},
    		"update completions disallowed": {
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob",
    					Namespace:       metav1.NamespaceDefault,
    					ResourceVersion: "0",
    				},
    				Spec: batch.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"foo": "bar",
    				"bar": [
    					"baz",
    					"qux"
    				]
    			}`, valid.Unix()),
    			wantInitErr: `claimMappings.extra[2].key: Duplicate value: "example.org/foo"`,
    		},
    		{
    			name: "disallowed issuer via configured value",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:       "https://auth.example.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    }
    
    switch {
    case x < y: f1()
    case x < z: f2()
    case x == 4: f3()
    }
    </pre>
    
    <p>
    Implementation restriction: A compiler may disallow multiple case
    expressions evaluating to the same constant.
    For instance, the current compilers disallow duplicate integer,
    floating point, or string constants in case expressions.
    </p>
    
    <h4 id="Type_switches">Type switches</h4>
    
    <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)
  4. src/cmd/go/internal/load/pkg.go

    		// This prefix is owned by the Go core for possible use in the
    		// standard library (since it does not begin with a domain name),
    		// so it's OK to disallow entirely.
    		return nil, false, fmt.Errorf("disallowed import path %q", path)
    	}
    
    	if strings.Contains(path, "@") {
    		return nil, false, errors.New("can only use path@version syntax with 'go get' and 'go install' in module-aware mode")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.4.md

    - Service loadBalancerSourceRanges doesn't respect updates ([#33033](https://github.com/kubernetes/kubernetes/issues/33033))
    - disallow user to update loadbalancerSourceRanges ([#33346](https://github.com/kubernetes/kubernetes/issues/33346))
    
    ## Notable Changes to Existing Behavior
    
    ### Deployments
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  6. src/encoding/json/testdata/code.json.gz

    in_t":1228952692,"max_t":1228952692,"mean_t":1228952692},{"name":"use-on-disallowed-foreign-object-5-expected.txt","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1228952692,"max_t":1228952692,"mean_t":1228952692},{"name":"use-on-disallowed-foreign-object-2-expected.png","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1228952692,"max_t":1228952692,"mean_t":1228952692},{"name":"use-on-disallowed-foreign-object-6-expected.png","kids":[],"cl_weight":0.02222222222222222...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    specified. The signer defines:\n 1. Trust distribution: how trust (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // one or more leading elements of the module or import path. The vcslist
    // is a pipe-separated list of allowed version control commands, or "all"
    // to allow use of any known command, or "off" to disallow all commands.
    // Note that if a module matches a pattern with vcslist "off", it may still be
    // downloaded if the origin server uses the "mod" scheme, which instructs the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    			if len(exportTo) > 1 {
    				errs = appendErrors(errs, fmt.Errorf("cannot have both public (*) and non-public exportTo values for a resource"))
    			}
    		}
    
    		// if this is a service entry, then we need to disallow * and ~ together. Or ~ and other namespaces
    		if exportToSet.Contains(string(visibility.None)) {
    			if len(exportTo) > 1 {
    				errs = appendErrors(errs, fmt.Errorf("cannot export service entry to no one (~) and someone"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__policy__v1_openapi.json

            ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top