Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 552 for STRICT (0.3 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/AbstractConflictResolverTest.groovy

            module('org', 'foo', version).with {
                participants << it
                it
            }
        }
    
        protected TestComponent strictly(String version) {
            prefer(version).strict()
        }
    
        protected void selected(ComponentResolutionState state) {
            assert details.hasSelected()
            assert details.selected == state
        }
    
        protected void selected(String version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

                    }
                    edge("org:foo:[1.0,2.0)", "org:foo:1.1")
                }
            }
        }
    
        def "direct strict dependency should win over published transitive strict dependency"() {
            given:
            repository {
                'org:foo:15'()
                'org:foo:17'()
                'org:bar:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. tests/integration/pilot/grpc_probe_test.go

    			}
    
    			ns := namespace.NewOrFail(t, t, namespace.Config{Prefix: "grpc-probe", Inject: true})
    			// apply strict mtls
    			t.ConfigKube(t.Clusters().Configs()...).YAML(ns.Name(), `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: grpc-probe-mtls
    spec:
      mtls:
        mode: STRICT`).ApplyOrFail(t)
    
    			for _, testCase := range []struct {
    				name     string
    				rewrite  bool
    				ready    bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    			assertOnError: func(t *testing.T, err error) {
    				if err != nil {
    					t.Errorf("expected nil error, got: %v", err)
    				}
    			},
    		},
    		{
    			name:        "strict mode strict error",
    			options:     []Option{Strict(true)},
    			data:        []byte{0xa1, 0x61, 'z', 0x01}, // {'z': 1}
    			gvk:         &schema.GroupVersionKind{},
    			metaFactory: stubMetaFactory{gvk: &schema.GroupVersionKind{}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                    "The org.gradle.kotlin.dsl.precompiled.accessors.strict system property has been deprecated. " +
                        "This is scheduled to be removed in Gradle 9.0. " +
                        "Consult the upgrading guide for further information: https://docs.gradle.org/${GradleVersion.current().version}/userguide/upgrading_version_7.html#strict-kotlin-dsl-precompiled-scripts-accessors-by-default"
                )
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	// Static STRICT policy should be sent
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		[]string{"ns1/selector", fmt.Sprintf("istio-system/%s", staticStrictPolicyName)})
    
    	// Now add a STRICT workload PeerAuthentication
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-unset-port-mtls-permissive-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: strict-mtls
    spec:
      selector:
        matchLabels:
          app: a
      mtls:
        mode: UNSET
      portLevelMtls:
        9090:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 215 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/groovy/build.gradle

    plugins {
        id '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
    - 343 bytes
    - Viewed (0)
  9. pkg/test/datasets/validation/dataset/security-v1beta1-PeerAuthentication.yaml

    kind: PeerAuthentication
    metadata:
      name: valid-peer-authentication
    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      mtls:
        mode: PERMISSIVE
      portLevelMtls:
        8080:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 254 bytes
    - Viewed (0)
  10. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

     */
    @Experimental
    @Consumer
    public interface ModelParser extends SpiService {
    
        /**
         * Option that can be specified in the options map.  The value should be a Boolean.
         */
        String STRICT = "strict";
    
        /**
         * Locates the pom in the given directory.
         *
         * @param dir the directory to locate the pom for, never {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top