Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,072 for stricmp (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

        }
    
        def 'fails with missing lockfile in strict mode (Unique: #unique)'() {
            given:
            provider.getLockMode().set(LockMode.STRICT)
    
            when:
            provider.loadLockState('conf', owner)
    
            then:
            def ex = thrown(MissingLockStateException)
            1 * owner.getCapitalizedDisplayName() >> "Owner"
            ex.message == 'Locking strict mode: Owner is locked but does not have lock state.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         */
        List<Capability> getRequestedCapabilities();
    
        /**
         * Endorse version constraints with {@link VersionConstraint#getStrictVersion()} strict versions} from the target module.
         *
         * Endorsing strict versions of another module/platform means that all strict versions will be interpreted during dependency
         * resolution as if they were defined by the endorsing module itself.
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. pkg/test/datasets/validation/dataset/security-v1-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: Mon Apr 01 14:30:12 UTC 2024
    - 249 bytes
    - Viewed (0)
  4. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

            Class<?> fromRawClazz = getRawType(from);
            if (strict && !toRawClazz.equals(fromRawClazz)) {
                return false;
            }
            if (!strict && !toRawClazz.isAssignableFrom(fromRawClazz)) {
                return false;
            }
            if (toRawClazz.isArray()) {
                return true;
            }
            Type[] fromTypeArguments = getActualTypeArguments(from);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubeletconfig/util/codec/codec.go

    		if lenientErr != nil {
    			// Lenient decoding failed with the current version, return the
    			// original strict error.
    			return nil, fmt.Errorf("failed lenient decoding: %v", err)
    		}
    		// Continue with the v1beta1 object that was decoded leniently, but emit a warning.
    		klog.InfoS("Using lenient decoding as strict decoding failed", "err", err)
    	}
    
    	internalKC, ok := obj.(*kubeletconfig.KubeletConfiguration)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. tests/integration/security/mtls_healthcheck_test.go

    ) {
    	ctx.Helper()
    	wantSuccess := rewrite
    	policyYAML := fmt.Sprintf(`apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "mtls-strict-for-%v"
    spec:
      selector:
        matchLabels:
          app: "%v"
      mtls:
        mode: STRICT
    `, name, name)
    	ctx.ConfigIstio().YAML(ns.Name(), policyYAML).ApplyOrFail(ctx)
    
    	var healthcheck echo.Instance
    	cfg := echo.Config{
    		Namespace: ns,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  8. pkg/scheduler/apis/config/scheme/scheme_test.go

        args:
          scoringStrategy:
            resources:
            - Name: cpu
              Weight: 1
    `),
    			wantErr: `strict decoding error: decoding .profiles[0].pluginConfig[0]: strict decoding error: decoding args for plugin NodeResourcesFit: strict decoding error: unknown field "scoringStrategy.resources[0].Name", unknown field "scoringStrategy.resources[0].Weight"`,
    		},
    		{
    			name: "out-of-tree plugin args",
    			data: []byte(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf_test.go

    	testenv.MustHaveCGO(t)
    
    	// Make sure that the resulting binary can be put through strip.
    	// Try both "strip" and "llvm-strip"; in each case ask out CC
    	// command where to find the tool with "-print-prog-name" (meaning
    	// that if CC is gcc, we typically won't be able to find llvm-strip).
    	//
    	// Interestingly, binutils version of strip will (unfortunately)
    	// print error messages if there is a problem but will not return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. 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)
Back to top