Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,072 for stricmp (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. test/nilptr3.go

    	_ = *intp    // ERROR "removed nil check"
    	_ = *arrayp  // ERROR "removed nil check"
    	_ = *structp // ERROR "generated nil check"
    	_ = *emptyp  // ERROR "generated nil check"
    	_ = *arrayp  // ERROR "removed nil check"
    }
    
    func f2() {
    	var (
    		intp       *int
    		arrayp     *[10]int
    		array0p    *[0]int
    		bigarrayp  *[1 << 20]int
    		structp    *Struct
    		bigstructp *BigStruct
    		emptyp     *Empty
    		empty1p    *Empty1
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict-and-disable-port-mtls.yaml

    John Howard <******@****.***> 1709232034 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 223 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top