Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 844 for STRICT (0.32 sec)

  1. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/dependency-notations.toml

    groovy-with-ref2 = { group = "org.codehaus.groovy", name = "groovy", version.ref = "rich-groovy" }
    groovy-with-ref3 = { group = "org.codehaus.groovy", name = "groovy", version.ref = "version-with-bang" }
    
    strict-with-bang = "g:a:1.1!!"
    strict-with-bang-and-range = { module="g:a", version="[1.0,2.0]!!1.1"}
    
    [versions]
    groovy = "2.5.6"
    rich-groovy = { strictly = "[2.5, 3.0[", prefer = "2.5.6" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactory.java

        }
    
        private static CapabilityNotationParser createSingletonConverter(boolean strict) {
            NotationParser<Object, Capability> parser = NotationParserBuilder.toType(Capability.class)
                .converter(new StringNotationParser(strict))
                .converter(strict ? new StrictCapabilityMapNotationParser() : new LenientCapabilityMapNotationParser())
                .toComposite();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/verification/DependencyVerificationMode.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts.verification;
    
    /**
     * The different dependency verification modes. By default, Gradle
     * will use the strict mode, which means that it will verify dependencies
     * and fail <i>as soon as possible</i>, to avoid as much compromising of
     * the builds as possible.
     *
     * There are, however, two additional modes which can be used: the lenient
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/LockMode.java

     */
    
    package org.gradle.api.artifacts.dsl;
    
    /**
     * The supported lock modes:
     * <ul>
     *     <li>{@code DEFAULT} will load the lock state and verify resolution matches it</li>
     *     <li>{@code STRICT} in addition to the {@code DEFAULT} behaviour, will fail resolution if a locked configuration does not have lock state defined</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java

                InputSource source = getSource(options);
                boolean strict = isStrict(options);
                MavenStaxReader mr = new MavenStaxReader();
                mr.setAddLocationInformation(source != null);
                Model model = new Model(mr.read(parser, strict, source != null ? source.toApiSource() : null));
                return model;
            } catch (XMLStreamException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/js/misc.js

    "use strict"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_test.go

    	}
    
    	nonStrictCodec := newCodecFactory(s, newSerializersForScheme(s, testMetaFactory{}, CodecFactoryOptions{Pretty: true, Strict: false})).LegacyCodec()
    	_, _, err = nonStrictCodec.Decode([]byte(duplicateKeys), nil, nil)
    	if runtime.IsStrictDecodingError(err) {
    		t.Fatalf("Non-Strict decoder returned a StrictDecodingError: %v", err)
    	}
    }
    
    func TestConvertTypesWhenDefaultNamesMatch(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::lock-mode[]
    dependencyLocking {
        lockMode = LockMode.STRICT
    }
    // end::lock-mode[]
    
    configurations.compileClasspath {
        resolutionStrategy.activateDependencyLocking()
    }
    
    dependencies {
        implementation("org.springframework:spring-beans:[5.0,6.0)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 323 bytes
    - Viewed (0)
  9. tests/integration/ambient/testdata/beta-mtls-automtls.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-automtls"
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 247 bytes
    - Viewed (0)
  10. cmd/metacache-bucket_test.go

    			ID:           mustGetUUID(),
    			Bucket:       "",
    			BaseDir:      pathNames[i%paths],
    			Prefix:       "",
    			FilterPrefix: "",
    			Marker:       "",
    			Limit:        0,
    			AskDisks:     "strict",
    			Recursive:    false,
    			Separator:    slashSeparator,
    			Create:       true,
    		})
    	}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		bm.findCache(listPathOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 25 23:29:45 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top