Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 844 for STRICT (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/util/internal/VersionNumberIntegrationTest.groovy

    import org.gradle.test.fixtures.dsl.GradleDsl
    
    import static org.junit.Assume.assumeFalse
    
    
    class VersionNumberIntegrationTest extends AbstractIntegrationSpec {
    
        def "nullability with Kotlin jsr-305 strict"() {
            assumeFalse(GradleContextualExecuter.embedded)
    
            given:
            file("src/main/kotlin/Test.kt") << """
                import org.gradle.util.internal.VersionNumber
    
                fun test() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. architecture/ambient/peer-authentication.md

    ```yaml
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: strict-and-permissive-mtls
    spec:
      selector:
        matchLabels:
          app: a
      mtls:
        mode: STRICT
      portLevelMtls:
        9090:
          mode: PERMISSIVE
    ```
    
    will be translated into this `Authorization`:
    
    ```yaml
    action: DENY
    groups:
    - rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/controller/garbagecollector/testdata/empty.dot

    strict digraph full {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 24 bytes
    - Viewed (0)
Back to top