Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,716 for Strict (0.21 sec)

  1. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Reader.java

        /**
         *
         * @param reader a reader object.
         * @param strict a strict object.
         * @throws IOException IOException if any.
         * @throws XmlPullParserException XmlPullParserException if
         * any.
         * @return Model
         */
        public Model read(Reader reader, boolean strict) throws IOException, XmlPullParserException {
            return read(reader, strict, null);
        } // -- Model read( Reader, boolean )
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. tests/integration/security/pass_through_filter_chain_test.go

    						},
    					},
    				},
    				{
    					// There is only authN policy that enables mTLS (Strict).
    					// The request should be denied because the client is always using plain text.
    					name: "STRICT",
    					config: `apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: mtls
    spec:
      mtls:
        mode: STRICT`,
    					expected: []expect{
    						{
    							port:              ports.TCPWorkloadOnly,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

                strict(methodShouldNotBeAnnotatedMessage { type(TypeWithAnnotatedNonGetterMethods.canonicalName).kind('method').method('doSomething').annotation('Large').includeLink() }),
                strict(methodShouldNotBeAnnotatedMessage { type(TypeWithAnnotatedNonGetterMethods.canonicalName).kind('setter').method('setSomething').annotation('Large').includeLink() }),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
    	if err != nil {
    		return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	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
    	options     options
    }
    
    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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

    import spock.lang.Specification
    
    class NodeStateTest extends Specification {
    
        int idIdx = 0
        NodeState root = nextNode()
    
        def "uses empty strict version constraints object if no strict versions are defined"() {
            Set<ModuleIdentifier> constraintsSet = []
    
            when:
            root.maybeCollectStrictVersions(constraintsSet, edge(root, false).dependencyState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    						{
    							MatchType: &security.StringMatch_Presence{},
    						},
    					},
    				},
    			},
    		})
    	}
    
    	// If we have a strict policy and all of the ports are strict, it's effectively a strict policy
    	// so we can exit early and have the WorkloadRbac xDS server push its static strict policy.
    	// Note that this doesn't actually attach the policy to any workload; it just makes it available
    	// to ztunnel in case a workload needs it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/GeoInfoTest.java

                    "{\"bool\":{\"should\":[{\"geo_distance\":{\"location\":[151.0,35.0],\"distance\":1000.0,\"distance_type\":\"arc\",\"validation_method\":\"STRICT\",\"ignore_unmapped\":false,\"boost\":1.0}},{\"geo_distance\":{\"location\":[150.0,34.0],\"distance\":10000.0,\"distance_type\":\"arc\",\"validation_method\":\"STRICT\",\"ignore_unmapped\":false,\"boost\":1.0}}],\"adjust_pure_negative\":true,\"boost\":1.0}}";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ScopedServiceRegistry.java

        }
    
        public ScopedServiceRegistry(
            Class<? extends Scope> scope,
            boolean strict,
            String displayName,
            ServiceRegistry... parents
        ) {
            super(displayName, parents);
            addServiceValidator(scope, strict);
        }
    
        /**
         * Validator implements a special type of service ({@link AnnotatedServiceLifecycleHandler})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top