Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,037 for involve (0.13 sec)

  1. src/net/http/servemux121.go

    // The behavior is controlled by a GODEBUG setting.
    // Most of this code is derived from commit 08e35cc334.
    // Changes are minimal: aside from the different receiver type,
    // they mostly involve renaming functions, usually by unexporting them.
    
    // servemux121.go exists solely to provide a snapshot of
    // the pre-Go 1.22 ServeMux implementation for backwards compatibility.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

          list.add(e);
        }
        return Collections.unmodifiableList(list);
      }
    
      /**
       * @return a suitable location for a null element, to use when initializing containers for tests
       *     that involve a null element being present.
       */
      protected int getNullLocation() {
        return getNumElements() / 2;
      }
    
      protected MinimalCollection<E> createDisjointCollection() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. hack/verify-prometheus-imports.sh

      ./test/integration/apiserver/flowcontrol/concurrency_test.go
      ./test/integration/apiserver/flowcontrol/concurrency_util_test.go
      ./test/integration/metrics/metrics_test.go
    )
    
    # Go imports always involve a double quoted string of the package path
    # https://golang.org/ref/spec#Import_declarations
    #
    # If you *really* need a string literal that looks like "github.com/prometheus/.*"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations.go

    	for _, cert := range peerCertificates {
    		if cert.SignatureAlgorithm == x509.SHA1WithRSA || cert.SignatureAlgorithm == x509.ECDSAWithSHA1 {
    			// the SHA-1 deprecation does not involve self-signed root certificates
    			if !reflect.DeepEqual(cert.Issuer, cert.Subject) {
    				return true
    			}
    		}
    	}
    
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

          list.add(e);
        }
        return Collections.unmodifiableList(list);
      }
    
      /**
       * @return a suitable location for a null element, to use when initializing containers for tests
       *     that involve a null element being present.
       */
      protected int getNullLocation() {
        return getNumElements() / 2;
      }
    
      protected MinimalCollection<E> createDisjointCollection() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. pkg/scheduler/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: SchedulerSubsystem,
    			Name:      "pod_scheduling_sli_duration_seconds",
    			Help:      "E2e latency for a pod being scheduled, from the time the pod enters the scheduling queue and might involve multiple scheduling attempts.",
    			// Start with 10ms with the last bucket being [~88m, Inf).
    			Buckets:        metrics.ExponentialBuckets(0.01, 2, 20),
    			StabilityLevel: metrics.BETA,
    		},
    		[]string{"attempts"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

         *
         * </ul>
         *
         * You should prefer using {@link AntType#ResourceCollection}, if the target Ant task supports it, as this is
         * generally the most efficient. Using the other types may involve copying the contents of this collection to a
         * temporary directory.
         *
         * @param builder The builder to add this collection to.
         * @param nodeName The target node name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  8. pkg/volume/downwardapi/downwardapi_test.go

    		steps          []testStep
    	}{
    		{
    			name:      "test_labels",
    			files:     map[string]string{"labels": "metadata.labels"},
    			podLabels: labels1,
    			steps: []testStep{
    				// for steps that involve files, stepName is also
    				// used as the name of the file to verify
    				verifyMapInFile{stepName{"labels"}, labels1},
    			},
    		},
    		{
    			name:           "test_annotations",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-jvm-test-fixtures/src/testFixtures/groovy/org/gradle/java/fixtures/AbstractJavaProjectTestFixturesIntegrationTest.groovy

    import org.gradle.test.fixtures.GradleModuleMetadata
    import org.gradle.test.fixtures.maven.MavenPom
    
    /**
     * Base class for integration tests for the `java-test-fixtures` plugin that involve `java` or `java-library` projects.
     */
    abstract class AbstractJavaProjectTestFixturesIntegrationTest extends AbstractTestFixturesIntegrationTest {
        abstract String getPluginName()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

            int invalidCount = 2
            if (GradleMetadataResolveRunner.useMaven() && !GradleMetadataResolveRunner.gradleMetadataPublished) {
                // for Maven with experimental, we use variant aware matching which will (today) involve another round
                // of execution of the rule
                invalidCount++
            }
            buildFile << """
                int cpt
                dependencies {
                    components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top