Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 265 for STRICT (0.15 sec)

  1. src/encoding/base64/base64.go

    	return &enc
    }
    
    // Strict creates a new encoding identical to enc except with
    // strict decoding enabled. In this mode, the decoder requires that
    // trailing padding bits are zero, as described in RFC 4648 section 3.5.
    //
    // Note that the input is still malleable, as new line characters
    // (CR and LF) are still ignored.
    func (enc Encoding) Strict() *Encoding {
    	enc.strict = true
    	return &enc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/net/http/cookie_test.go

    	{
    		&Cookie{Name: "cookie-13", Value: "samesite-lax", SameSite: SameSiteLaxMode},
    		"cookie-13=samesite-lax; SameSite=Lax",
    	},
    	{
    		&Cookie{Name: "cookie-14", Value: "samesite-strict", SameSite: SameSiteStrictMode},
    		"cookie-14=samesite-strict; SameSite=Strict",
    	},
    	{
    		&Cookie{Name: "cookie-15", Value: "samesite-none", SameSite: SameSiteNoneMode},
    		"cookie-15=samesite-none; SameSite=None",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  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