Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,584 for Strict (0.1 sec)

  1. cmd/kubeadm/app/componentconfigs/configset.go

    			return &UnsupportedConfigVersionError{
    				OldVersion:     gvk.GroupVersion(),
    				CurrentVersion: cb.GroupVersion,
    				Document:       cloneBytes(yaml),
    			}
    		}
    
    		// Print warnings for strict errors
    		if err := strict.VerifyUnmarshalStrict([]*runtime.Scheme{Scheme}, gvk, yaml); err != nil {
    			klog.Warning(err.Error())
    		}
    
    		// As long as we support only component configs with a single kind, this is allowed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/encoding/xml/xml.go

    	//	  character entities (sequences beginning with &) are left alone.
    	//
    	// Setting:
    	//
    	//	d.Strict = false
    	//	d.AutoClose = xml.HTMLAutoClose
    	//	d.Entity = xml.HTMLEntity
    	//
    	// creates a parser that can handle typical HTML.
    	//
    	// Strict mode does not enforce the requirements of the XML name spaces TR.
    	// In particular it does not reject name space tags using undefined prefixes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  3. cmd/metacache-entries.go

    func (e metaCacheEntry) hasPrefix(s string) bool {
    	return strings.HasPrefix(e.name, s)
    }
    
    // matches returns if the entries have the same versions.
    // If strict is false we allow signatures to mismatch.
    func (e *metaCacheEntry) matches(other *metaCacheEntry, strict bool) (prefer *metaCacheEntry, matches bool) {
    	if e == nil && other == nil {
    		return nil, true
    	}
    	if e == nil {
    		return other, false
    	}
    	if other == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        @get:Input
        @Deprecated("Will be removed in Gradle 9.0")
        abstract val strict: Property<Boolean>
    
        init {
            outputs.doNotCacheIf(
                "Generated accessors can only be cached in strict mode."
            ) {
                @Suppress("DEPRECATION")
                !strict.get()
            }
        }
    
        /**
         *  ## Computation and sharing of type-safe accessors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// owner: @cici37
    	// alpha: v1.30
    	//
    	// StrictCostEnforcementForVAP is used to apply strict CEL cost validation for ValidatingAdmissionPolicy.
    	// It will be set to off by default for certain time of period to prevent the impact on the existing users.
    	// It is strongly recommended to enable this feature gate as early as possible.
    	// The strict cost is specific for the extended libraries whose cost defined under k8s/apiserver/pkg/cel/library.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_builder_test.go

    				// But should see for passthrough or unnamed ports
    				81:   false,
    				1000: false,
    			},
    		},
    		{
    			name:   "strict",
    			config: strictMode,
    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    				// This is 'auto', but for STRICT we always get requests over TLS so HTTP inspector is not in play
    				81: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		switch {
    		case !isStrictError:
    			// disregard any appliedStrictErrs, because it's an incomplete
    			// list of strict errors given that we don't know what fields were
    			// unknown because DecodeInto failed. Non-strict errors trump in this case.
    			return nil, errors.NewInvalid(schema.GroupKind{}, "", field.ErrorList{
    				field.Invalid(field.NewPath("patch"), string(patchedObjJS), err.Error()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	// HSTS Headers format: Strict-Transport-Security:max-age=expireTime [;includeSubDomains] [;preload]
    	// See https://tools.ietf.org/html/rfc6797#section-6.1 for more information
    	allErrors := []error{}
    	for _, hstsDirective := range hstsDirectives {
    		if len(strings.TrimSpace(hstsDirective)) == 0 {
    			allErrors = append(allErrors, fmt.Errorf("empty value in strict-transport-security-directives"))
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/DoubleMath.java

       *
       * @param values a nonempty series of values
       * @throws IllegalArgumentException if {@code values} is empty or contains any non-finite value
       * @deprecated Use {@link Stats#meanOf} instead, noting the less strict handling of non-finite
       *     values.
       */
      @Deprecated
      // com.google.common.math.DoubleUtils
      @GwtIncompatible
      public static double mean(double... values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/DoubleMath.java

       *
       * @param values a nonempty series of values
       * @throws IllegalArgumentException if {@code values} is empty or contains any non-finite value
       * @deprecated Use {@link Stats#meanOf} instead, noting the less strict handling of non-finite
       *     values.
       */
      @Deprecated
      // com.google.common.math.DoubleUtils
      @GwtIncompatible
      public static double mean(double... values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top