Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,587 for Strict (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    		} else {
    			s = json.NewSerializerWithOptions(json.DefaultMetaFactory, test.creater, test.typer, json.SerializerOptions{Yaml: test.yaml, Pretty: test.pretty, Strict: test.strict})
    		}
    		obj, gvk, err := s.Decode([]byte(test.data), test.defaultGVK, test.into)
    
    		if !reflect.DeepEqual(test.expectedGVK, gvk) {
    			logTestCase(t, test)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. src/mdo/reader.vm

         * @param strict a strict object.
         * @throws XMLStreamException XMLStreamException if
         * any.
         * @throws IOException IOException if any.
         */
        private void checkUnknownElement(XMLStreamReader parser, boolean strict)
            throws XMLStreamException, IOException {
            if (strict) {
                throw new XMLStreamException("Unrecognised tag: '" + parser.getLocalName() + "'", parser.getLocation(), null);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  3. src/mdo/reader-stax.vm

         * @param reader a reader object.
         * @param strict a strict object.
         * @throws XMLStreamException XMLStreamException if
         * any.
         * @return ${root.name}
         */
    #if ( $locationTracking )
        public ${root.name} read(Reader reader, boolean strict, InputSource source) throws XMLStreamException {
    #else
        public ${root.name} read(Reader reader, boolean strict) throws XMLStreamException {
    #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    // versions and content types.
    type CodecFactory struct {
    	scheme    *runtime.Scheme
    	universal runtime.Decoder
    	accepts   []runtime.SerializerInfo
    
    	legacySerializer runtime.Serializer
    }
    
    // CodecFactoryOptions holds the options for configuring CodecFactory behavior
    type CodecFactoryOptions struct {
    	// Strict configures all serializers in strict mode
    	Strict bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  5. fastapi/params.py

                        "alias_priority": alias_priority,
                        "validation_alias": validation_alias,
                        "serialization_alias": serialization_alias,
                        "strict": strict,
                        "json_schema_extra": current_json_schema_extra,
                    }
                )
                kwargs["pattern"] = pattern or regex
            else:
                kwargs["regex"] = pattern or regex
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionsInPlatformCentricDevelopmentIntegrationTest.groovy

    import static org.gradle.integtests.resolve.strict.StrictVersionsInPlatformCentricDevelopmentIntegrationTest.PlatformType.LEGACY_PLATFORM
    import static org.gradle.integtests.resolve.strict.StrictVersionsInPlatformCentricDevelopmentIntegrationTest.PlatformType.MODULE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top