Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for disallow (0.2 sec)

  1. doc/go_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: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.11.md

    ### SIG API Machinery
    
    This release SIG API Machinery focused mainly on CustomResources. For example, subresources for CustomResources are now beta and enabled by default. With this, updates to the `/status` subresource will disallow updates to all fields other than `.status` (not just `.spec` and `.metadata` as before). Also, `required` and `description` can be used at the root of the CRD OpenAPI validation schema when the `/status` subresource is enabled.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.10.md

    * Disallow PriorityClass names with 'system-' prefix for user defined priority classes. ([#59382](https://github.com/kubernetes/kubernetes/pull/59382), [@bsalamat](https://github.com/bsalamat))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    		}
    		// These headers are meaningful only if the request has a body,
    		// but PUSH_PROMISE requests cannot have a body.
    		// http://tools.ietf.org/html/rfc7540#section-8.2
    		// Also disallow Host, since the promised URL must be absolute.
    		if http2asciiEqualFold(k, "content-length") ||
    			http2asciiEqualFold(k, "content-encoding") ||
    			http2asciiEqualFold(k, "trailer") ||
    			http2asciiEqualFold(k, "te") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-63593`](https://youtrack.jetbrains.com/issue/KT-63593) K2: FIR2IR converts arguments of array set call for dynamic receiver twice
    - [`KT-63317`](https://youtrack.jetbrains.com/issue/KT-63317) K2: Disallow generic types in contract type assertions
    - [`KT-59922`](https://youtrack.jetbrains.com/issue/KT-59922) K2: Disappeared CANNOT_CHECK_FOR_ERASED
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    	allErrs = append(allErrs, ValidateNonSpecialIP(address.IP, fldPath.Child("ip"))...)
    	return allErrs
    }
    
    // ValidateNonSpecialIP is used to validate Endpoints, EndpointSlices, and
    // external IPs. Specifically, this disallows unspecified and loopback addresses
    // are nonsensical and link-local addresses tend to be used for node-centric
    // purposes (e.g. metadata service).
    //
    // IPv6 references
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.7.md

      * Fix ceph-secret type to kubernetes.io/rbd in kubernetes-master charm ([#44635](https://github.com/kubernetes/kubernetes/pull/44635), [@Cynerva](https://github.com/Cynerva))
    
      * Disallows installation of upstream docker from PPA in the Juju kubernetes-worker charm. ([#44681](https://github.com/kubernetes/kubernetes/pull/44681), [@wwwtyro](https://github.com/wwwtyro))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			Served:  true,
    			Storage: true,
    		},
    	}
    	tests := []struct {
    		name     string
    		resource *apiextensions.CustomResourceDefinition
    		errors   []validationMatch
    	}{
    		{
    			name: "invalid types disallowed",
    			resource: &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "plural.group.com"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Group: "group.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      //   allows any non-core object, as well as PersistentVolumeClaim objects.
      // * While dataSource ignores disallowed values (dropping them), dataSourceRef
      //   preserves all values, and generates an error if a disallowed value is
      //   specified.
      // * While dataSource only allows local objects, dataSourceRef allows objects
      //   in any namespaces.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	//   allows any non-core object, as well as PersistentVolumeClaim objects.
    	// * While dataSource ignores disallowed values (dropping them), dataSourceRef
    	//   preserves all values, and generates an error if a disallowed value is
    	//   specified.
    	// * While dataSource only allows local objects, dataSourceRef allows objects
    	//   in any namespaces.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top