Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,584 for Strict (0.12 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

            this(true);
        }
    
        public DefaultSerializerRegistry(boolean supportClassHierarchy) {
            this.classMatcher = supportClassHierarchy ? SerializerClassMatcherStrategy.HIERARCHY : SerializerClassMatcherStrategy.STRICT;
        }
    
        @Override
        public <T> void register(Class<T> implementationType, final Serializer<T> serializer) {
            registerWithFactory(implementationType, new InstanceBasedSerializerFactory<T>(serializer));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    type Go struct {
    	Version string // "1.23"
    	Syntax  *Line
    }
    
    // A Toolchain is the toolchain statement.
    type Toolchain struct {
    	Name   string // "go1.21rc1"
    	Syntax *Line
    }
    
    // A Godebug is a single godebug key=value statement.
    type Godebug struct {
    	Key    string
    	Value  string
    	Syntax *Line
    }
    
    // An Exclude is a single exclude statement.
    type Exclude struct {
    	Mod    module.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. src/runtime/symtab.go

    // See go.dev/issue/67401.
    //
    //go:linkname funcline1
    func funcline1(f funcInfo, targetpc uintptr, strict bool) (file string, line int32) {
    	datap := f.datap
    	if !f.valid() {
    		return "?", 0
    	}
    	fileno, _ := pcvalue(f, f.pcfile, targetpc, strict)
    	line, _ = pcvalue(f, f.pcln, targetpc, strict)
    	if fileno == -1 || line == -1 || int(fileno) >= len(datap.filetab) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .build());
            options.addOption(Option.builder(STRICT_ARTIFACT_DESCRIPTOR_POLICY)
                    .longOpt("strict-artifact-descriptor-policy")
                    .hasArg()
                    .desc("Defines 'strict' artifact descriptor policy. Supported values are 'true', 'false' (default).")
                    .build());
            options.addOption(Option.builder(IGNORE_TRANSITIVE_REPOSITORIES)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. docs/config/README.md

    list_quorum                     (string)    set the acceptable quorum expected for list operations e.g. "optimal", "reduced", "disk", "strict" (default: 'strict')
    replication_priority            (string)    set replication priority (default: 'auto')
    transition_workers              (number)    set the number of transition workers (default: '100')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

        }
    
        @Override
        public ResolutionStrategy failOnVersionConflict() {
            mutationValidator.validateMutation(STRATEGY);
            this.conflictResolution = ConflictResolution.strict;
            return this;
        }
    
        @Override
        public ResolutionStrategy failOnDynamicVersions() {
            mutationValidator.validateMutation(STRATEGY);
            this.failOnDynamicVersions = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/stmt0.go

    	case x:
    	}
    	switch x {
    	case f /* ERROR "multiple-value f" */ ():
    	}
    }
    
    type I interface {
    	m()
    }
    
    type I2 interface {
    	m(int)
    }
    
    type T struct{}
    type T1 struct{}
    type T2 struct{}
    
    func (T) m() {}
    func (T2) m(int) {}
    
    func typeswitches() {
    	var i int
    	var x interface{}
    
    	switch x.(type) {}
    	switch (x /* ERROR "outside type switch" */ .(type)) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

                            .read(XmlReaderRequest.builder()
                                    .inputStream(is)
                                    .location(settingsSource.getLocation())
                                    .strict(true)
                                    .build());
                } catch (XmlReaderException e) {
                    try (InputStream is = settingsSource.openStream()) {
                        settings = request.getSession()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. pilot/pkg/model/authentication.go

    	// MTLSDisable if authentication policy disable mTLS.
    	MTLSDisable
    
    	// MTLSPermissive if authentication policy enable mTLS in permissive mode.
    	MTLSPermissive
    
    	// MTLSStrict if authentication policy enable mTLS in strict mode.
    	MTLSStrict
    )
    
    // In Ambient, we convert k8s PeerAuthentication resources to the same type as AuthorizationPolicies
    // To prevent conflicts in xDS, we add this prefix to the converted PeerAuthentication resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializerTest.groovy

        def "serializes version constraint"() {
            given:
            ModuleComponentSelector selection = DefaultModuleComponentSelector.newSelector(DefaultModuleIdentifier.newId('group-one', 'name-one'), constraint('req', 'pref', 'strict', ['rej']))
    
            when:
            ModuleComponentSelector result = serialize(selection, serializer)
    
            then:
            result.group == 'group-one'
            result.module == 'name-one'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top