Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 158 for silver (0.79 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                // Dependency excluded from import.
                List<org.apache.maven.api.model.Dependency> dependencies = importMgmt.getDependencies().stream()
                        .filter(candidate -> exclusions.stream().noneMatch(exclusion -> match(exclusion, candidate)))
                        .map(candidate -> addExclusions(candidate, exclusions))
                        .collect(Collectors.toList());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation_test.go

    					Usages:     validUsages,
    					Request:    newCSRPEM(t),
    					SignerName: "an-invalid-signer-name",
    				},
    			},
    			errs: field.ErrorList{
    				field.Invalid(specPath.Child("signerName"), "an-invalid-signer-name", "must be a fully qualified domain and path of the form 'example.com/signer-name'"),
    			},
    		},
    		"signerName contains two '/'": {
    			csr: capi.CertificateSigningRequest{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    button.copy:hover,
    button.copy:active,
    button.copy:focus-visible,
    button.copy.visible {
        opacity: 100%;
    }
    button.copy img {
        position: relative;
        background: none;
        filter: brightness(var(--copy-icon-brightness));
    }
    button.copy:active {
        background-color: var(--copy-button-background-color-active);
    }
    button.copy span {
        color: var(--body-text-color);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

         * provided, an empty map is returned defensively so that [toTypeArgumentsMapping] doesn't conjure any error types. If you want to map
         * too few type arguments meaningfully, please provide filler types explicitly.
         */
        private fun toTypeArgumentsMapping(
            typeArguments: List<FirTypeProjection>,
            partiallyAppliedSymbol: KaPartiallyAppliedSymbol<*, *>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		forceWatch := true
    		return handlers.ListResource(storage, storage, requestScope, forceWatch, r.minRequestTimeout)
    	case "create":
    		// we want to track recently created CRDs so that in HA environments we don't have server A allow a create and server B
    		// not have observed the established, so a followup get,update,delete results in a 404. We've observed about 800ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. src/html/template/escape_test.go

    			// between (thead, tfoot, tbody), (ul, ol), (th, td),
    			// and other replaceable sets.
    			// We do not currently easily support (ul, ol).
    			// If we do change to support that, this test should
    			// catch failures to filter out special tag names which
    			// would violate the structure preservation property --
    			// if any special tag name could be substituted, then
    			// the content could be raw text/RCDATA for some inputs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            """
    
            expect:
            succeeds 'dependencies', '--configuration', 'conf'
        }
    
        def 'does not cache node dependencies when node is deselected then reselected with different exclude filter'() {
            given:
            // Excluded module
            def excluded = mavenRepo.module('org.test', 'excluded', '1.0').publish()
    
            // Intermediates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // which contains only the schemes under test.
    //
    // Without this additional step, when there are schemes available but the user
    // only requests schemes that don't exist, first instantiation of the test would
    // filter out all the user provided schemes (as they are not registered) but
    // subsequent instantiations would return all registered schemes (since the
    // vector with the user provided schemes is cleared).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    		// If you make changes here, make changes there too.
    		obj := *(*uintptr)(unsafe.Pointer(addr))
    
    		// At this point we have extracted the next potential pointer.
    		// Quickly filter out nil and pointers back to the current object.
    		if obj != 0 && obj-b >= n {
    			// Test if obj points into the Go heap and, if so,
    			// mark the object.
    			//
    			// Note that it's possible for findObject to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top