Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 8,774 for Strict (0.48 sec)

  1. 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)
  2. internal/etag/etag.go

    // not a valid textual representation of an ETag.
    func Parse(s string) (ETag, error) {
    	const strict = false
    	return parse(s, strict)
    }
    
    // parse parse s as an S3 ETag, returning the result.
    // It operates in one of two modes:
    //   - strict
    //   - non-strict
    //
    // In strict mode, parse only accepts ETags that
    // are AWS S3 compatible. In particular, an AWS
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

     */
    package org.gradle.integtests.resolve.strict
    
    import org.gradle.integtests.fixtures.GradleMetadataResolveRunner
    import org.gradle.integtests.fixtures.RequiredFeature
    import org.gradle.integtests.resolve.AbstractModuleDependencyResolveTest
    
    class StrictVersionConstraintsFeatureInteractionIntegrationTest extends AbstractModuleDependencyResolveTest {
        def "can turn constraint into strict constraint by using a component metadata rule"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset.go

    // the search is aborted and true is returned. The root node is
    // visited too.
    // If strict, ignore edges across a path until at least one
    // strict edge is found. For instance, for a chain A<=B<=C<D<=E<F,
    // a strict walk visits D,E,F.
    // If the visit ends, false is returned.
    func (po *poset) dfs(r uint32, strict bool, f func(i uint32) bool) bool {
    	closed := newBitset(int(po.lastidx + 1))
    	open := make([]uint32, 1, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-compiler-configuration.kt

                analysisFlags = mapOf(
                    JvmAnalysisFlags.javaTypeEnhancementState to JavaTypeEnhancementState(
                        Jsr305Settings(ReportLevel.STRICT, ReportLevel.STRICT)
                    ) { ReportLevel.STRICT },
                )
            )
        )
    
        put(JVMConfigurationKeys.SAM_CONVERSIONS, JvmClosureGenerationScheme.CLASS)
        put(JVMConfigurationKeys.PARAMETERS_METADATA, true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:57 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. hack/update-golangci-lint-config.sh

        go run ./cmd/gotemplate <hack/golangci.yaml.in >"${out}" "$@"
    }
    
    # Regenerate.
    generate hack/golangci.yaml Base=1
    generate hack/golangci-strict.yaml Strict=1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    .Shorthand notation for strict dependencies
    ====
    include::sample[dir="snippets/dependencyManagement/declaringDependencies-concreteVersion/kotlin",files="build.gradle.kts[tags=strict-shorthand]"]
    include::sample[dir="snippets/dependencyManagement/declaringDependencies-concreteVersion/groovy",files="build.gradle[tags=strict-shorthand]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. internal/config/browser/help.go

    		},
    		config.HelpKV{
    			Key:         browserHSTSSeconds,
    			Description: `set Strict-Transport-Security 'max-age' amount of seconds value` + defaultHelpPostfix(browserHSTSSeconds),
    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         browserHSTSIncludeSubdomains,
    			Description: `turn 'on' to set Strict-Transport-Security 'includeSubDomains' directive` + defaultHelpPostfix(browserHSTSIncludeSubdomains),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 01 16:36:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

            this.scope = scope;
            this.strict = true;
            return this;
        }
    
        public ServiceRegistry build() {
            ServiceRegistry[] parents = this.parents.toArray(new ServiceRegistry[0]);
    
            DefaultServiceRegistry registry = scope != null
                ? new ScopedServiceRegistry(scope, strict, displayName, parents)
                : new DefaultServiceRegistry(displayName, parents);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/EndorseStrictVersionsIntegrationTest.groovy

       Constraint path ':test:unspecified' --> 'org:platform-b:1.0' (runtime) --> 'org:foo:{strictly 2.0}'"""
        }
    
        def "a module from which strict versions are endorsed can itself be influenced by strict versions endorsed form elsewhere"() {
            given:
            repository {
                'org:platform:1.0'() {
                    constraint(group: 'org', artifact: 'foo', strictly: '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top