Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 844 for STRICT (0.09 sec)

  1. internal/config/browser/browser.go

    	// browserHSTSSeconds setting name for Strict-Transport-Security response header, amount of seconds for 'max-age'
    	browserHSTSSeconds = "hsts_seconds"
    	// browserHSTSIncludeSubdomains setting name for Strict-Transport-Security response header 'includeSubDomains' flag (true or false)
    	browserHSTSIncludeSubdomains = "hsts_include_subdomains"
    	// browserHSTSPreload setting name for Strict-Transport-Security response header 'preload' flag (true or false)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. hack/verify-golangci-lint.sh

       -r <revision>: only report issues in code added since that revision
       -a: automatically select the common base of origin/master and HEAD
           as revision
       -s: select a strict configuration for new code
       -n: in addition to strict checking, also enable hints (aka nits) that may are may not
           be useful
       -g <github action file>: also write results with --out-format=github-actions
           to a separate file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

      limit: Int = length,
      encodeSet: String,
      alreadyEncoded: Boolean = false,
      strict: Boolean = false,
      plusIsSpace: Boolean = false,
      unicodeAllowed: Boolean = false,
    ): String {
      return canonicalizeWithCharset(
        pos = pos,
        limit = limit,
        encodeSet = encodeSet,
        alreadyEncoded = alreadyEncoded,
        strict = strict,
        plusIsSpace = plusIsSpace,
        unicodeAllowed = unicodeAllowed,
      )
    }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/hsts.go

    		// Chrome and Mozilla Firefox maintain an HSTS preload list
    		// issue : golang.org/issue/26162
    		// Set the Strict-Transport-Security header if it is not already set
    		if _, ok := w.Header()["Strict-Transport-Security"]; !ok {
    			w.Header().Set("Strict-Transport-Security", allDirectives)
    		}
    		handler.ServeHTTP(w, req)
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 12 08:42:53 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DirectDependencyMetadata.java

        /**
         * Endorse version constraints with {@link VersionConstraint#getStrictVersion()} strict versions} from the target module.
         *
         * Endorsing strict versions of another module/platform means that all strict versions will be interpreted during dependency
         * resolution as if they were defined by the endorsing module itself.
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 09 17:53:23 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    type Serializer interface {
    	runtime.Serializer
    	recognizer.RecognizingDecoder
    }
    
    var _ Serializer = &serializer{}
    
    type options struct {
    	strict bool
    }
    
    type Option func(*options)
    
    func Strict(s bool) Option {
    	return func(opts *options) {
    		opts.strict = s
    	}
    }
    
    type serializer struct {
    	metaFactory metaFactory
    	creater     runtime.ObjectCreater
    	typer       runtime.ObjectTyper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. pkg/config/xds/xds.go

    	}
    
    	if err := StructToMessage(value, obj, strict); err != nil {
    		return nil, fmt.Errorf("Envoy filter: %v", err) // nolint: stylecheck
    	}
    	return obj, nil
    }
    
    func StructToMessage(pbst *structpb.Struct, out proto.Message, strict bool) error {
    	if pbst == nil {
    		return errors.New("nil struct")
    	}
    
    	buf, err := protomarshal.MarshalProtoNames(pbst)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultImmutableVersionConstraintTest.groovy

        }
    
        private String displayNameFor(String preferred, String required, String strict, List<String> rejects, branch = null) {
            new DefaultImmutableVersionConstraint(preferred, required, strict, rejects, branch).displayName
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    }
    
    // IsStrict indicates whether the serializer
    // uses strict decoding or not
    func (s *Serializer) IsStrict() bool {
    	return s.options.Strict
    }
    
    func (s *Serializer) unmarshal(into runtime.Object, data, originalData []byte) (strictErrs []error, err error) {
    	// If the deserializer is non-strict, return here.
    	if !s.options.Strict {
    		if err := kjson.UnmarshalCaseSensitivePreserveInts(data, into); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyStringNotationConverterTest.groovy

            d.group == 'org.foo'
            d.name == 'bar'
            d.versionConstraint.requiredVersion == strict
            d.versionConstraint.strictVersion == strict
            d.versionConstraint.preferredVersion == preferred
    
            where:
            notation          | strict       | preferred
            '1.0!!'           | '1.0'        | ""
            '[1.0, 2.0]!!'    | '[1.0, 2.0]' | ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top