Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 7,705 for Strict (0.18 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

        private final Class<? extends Scope> scope;
        private final boolean strict;
    
        public ServiceScopeValidator(Class<? extends Scope> scope, boolean strict) {
            this.scope = scope;
            this.strict = strict;
        }
    
        @Override
        public List<Class<? extends Annotation>> getAnnotations() {
            return SCOPE_ANNOTATIONS;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

            return scopedRegistry(scope, true)
        }
    
        private static ScopedServiceRegistry scopedRegistry(Class<? extends Scope> scope, boolean strict) {
            return new ScopedServiceRegistry(scope, strict, "test service registry")
        }
    
        @ServiceScope(Scope.BuildTree)
        static class BuildTreeScopedService {}
    
        @ServiceScope([Scope.Global, Scope.Build])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

            Doc(
                """
                Parameter field name for discriminating the type in a tagged union.
                """
            ),
        ] = None,
        strict: Annotated[
            Union[bool, None],
            Doc(
                """
                If `True`, strict validation is applied to the field.
                """
            ),
        ] = _Unset,
        multiple_of: Annotated[
            Union[float, None],
            Doc(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. tests/integration/ambient/testdata/beta-mtls-automtls-workload.yaml

          app: a
      mtls:
        mode: DISABLE
    ---
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "b-strict"
      annotations:
        test-suite: "beta-mtls-automtls-workload"
    spec:
      selector:
        matchLabels:
          app: b
      mtls:
        mode: STRICT
      portLevelMtls:
        # 8090 is the targetPort for service http port.
        8090:
          mode: DISABLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 560 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-concreteVersion/kotlin/build.gradle.kts

        into(layout.buildDirectory.dir("libs"))
    }
    
    /*
    // tag::required-version[]
    dependencies {
        implementation("org.slf4j:slf4j-api:1.7.15")
    }
    // end::required-version[]
    
    // tag::strict-shorthand[]
    dependencies {
        // short-hand notation with !!
        implementation("org.slf4j:slf4j-api:1.7.15!!")
        // is equivalent to
        implementation("org.slf4j:slf4j-api") {
            version {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-concreteVersion/groovy/build.gradle

                }
            }
        }
    }
    // end::rich-version[]
    
    /*
    // tag::required-version[]
    dependencies {
        implementation('org.slf4j:slf4j-api:1.7.15')
    }
    // end::required-version[]
    
    // tag::strict-shorthand[]
    dependencies {
        // short-hand notation with !!
        implementation('org.slf4j:slf4j-api:1.7.15!!')
        // is equivalent to
        implementation("org.slf4j:slf4j-api") {
            version {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    			calls:  calls,
    		})
    	})
    
    	t.Run("Strict", func(t *testing.T) {
    		calls := []simulation.Expect{}
    		for _, c := range cases {
    			calls = append(calls, simulation.Expect{
    				Name:   c.Name,
    				Call:   c.Call,
    				Result: c.Strict,
    			})
    		}
    		runSimulationTest(t, nil, xds.FakeOptions{}, simulationTest{
    			config: svc + mtlsMode("STRICT"),
    			calls:  calls,
    		})
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/peer_authentication_simulation_test.go

       matchLabels:
         app: foo
     mtls:
       mode: STRICT
     portLevelMtls:
       9000:
         mode: DISABLE
    ---`
    	paDisableWithStrictOnPort9000 := `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
     name: default
    spec:
     selector:
       matchLabels:
         app: foo
     mtls:
       mode: DISABLE
     portLevelMtls:
       9000:
         mode: STRICT
    ---`
    	paDisableWithPermissiveOnPort9000 := `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/DependencyLockingStrictModeIntegrationTest.groovy

    import org.gradle.api.artifacts.dsl.LockMode
    
    class DependencyLockingStrictModeIntegrationTest extends AbstractValidatingLockingIntegrationTest {
    
        @Override
        LockMode lockMode() {
            LockMode.STRICT
        }
    
        def 'fails without lock file present and does not create one'() {
            mavenRepo.module('org', 'foo', '1.0').publish()
    
            buildFile << """
    dependencyLocking {
        lockAllConfigurations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ModuleComponentSelectorSerializerTest.groovy

            when:
            def result = serialize(newSelector(UTIL, constraint(version, strict, rejects), attributes(foo: 'bar'), [capability("foo")]), serializer)
    
            then:
            result == newSelector(UTIL, constraint(version, strict, rejects), attributes(foo: 'bar'), [capability("foo")])
    
            where:
            version | strict   | rejects
            '5.0'   | ''       | []
            '5.0'   | ''       | ['1.0']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top