Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 471 for Initial (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    			klog.Warningf("Initial population of dynamic certificates failed: %v", err)
    		}
    		go dynamicCertificateController.Run(1, stopCh)
    
    		tlsConfig.GetConfigForClient = dynamicCertificateController.GetConfigForClient
    	}
    
    	return tlsConfig, nil
    }
    
    // Serve runs the secure http server. It fails only if certificates cannot be loaded or the initial listen call fails.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

                buildFile << commonConfiguration
            }
            first.commit("initial commit")
    
            singleProjectBuild("second") {
                buildFile << commonConfiguration
            }
            second.commit("initial commit")
    
            singleProjectBuild("third") {
                buildFile << commonConfiguration
            }
            third.commit("initial commit")
    
            singleProjectBuild("fourth") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    	for i := 0; i < 500; i++ {
    		var initial, final IntOrString
    		fuzzer.Fuzz(&initial)
    		b, err := cbor.Marshal(initial)
    		if err != nil {
    			t.Errorf("error encoding %v: %v", initial, err)
    			continue
    		}
    		err = cbor.Unmarshal(b, &final)
    		if err != nil {
    			t.Errorf("%v: error decoding %v: %v", initial, string(b), err)
    		}
    		if diff := cmp.Diff(initial, final); diff != "" {
    			diag, err := cbor.Diagnose(b)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBrokenRemoteResolveIntegrationTest.groovy

            when:
            server.resetExpectations()
    
            then:
            succeeds("showBroken")
        }
    
        @Unroll("recovers from initial failed POM download (max retries = #retries)")
        void "recovers from initial failed POM download"() {
            withMaxHttpRetryCount(retries)
    
            given:
            def module = mavenHttpRepo.module('group', 'projectA', '1.3').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. pkg/kube/multicluster/secretcontroller_test.go

    func TestSeamlessMigration(t *testing.T) {
    	stop := make(chan struct{})
    	c := buildTestController(t, true)
    	tt := assert.NewTracker[string](t)
    	initial := kube.NewFakeClient(
    		&v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Name: "initial"},
    		},
    		&v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Name: "common"},
    		},
    	)
    	later := kube.NewFakeClient(
    		&v1.ConfigMap{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    			Namespace: namespace,
    			Subsystem: subsystem,
    			Name:      "priority_level_seat_utilization",
    			Help:      "Observations, at the end of every nanosecond, of utilization of seats for any stage of execution (but only initial stage for WATCHes)",
    			// Buckets for both 0.99 and 1.0 mean PromQL's histogram_quantile will reveal saturation
    			Buckets:        []float64{0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.95, 0.99, 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/UsingLockingOnNonProjectConfigurationsIntegrationTest.groovy

        @Rule
        MavenHttpPluginRepository pluginRepo = MavenHttpPluginRepository.asGradlePluginPortal(executer, mavenRepo)
    
        def 'locks build script classpath configuration (initial unique: #unique)'() {
            given:
            mavenRepo.module('org.foo', 'foo-plugin', '1.0').publish()
            mavenRepo.module('org.foo', 'foo-plugin', '1.1').publish()
    
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. pkg/adsc/delta_test.go

    		secretsHandler,
    	}
    
    	descs := []struct {
    		desc            string
    		inClient        *Client
    		serverResponses []*discovery.DeltaDiscoveryResponse
    		expectedTree    string
    	}{
    		{
    			desc: "initial request cluster with no secret",
    			serverResponses: []*discovery.DeltaDiscoveryResponse{
    				{
    					TypeUrl: v3.ClusterType,
    					Resources: []*discovery.Resource{
    						{
    							Name:     "test-eds",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/utils.h

        } else {
          if (shape != shaped_type.getShape()) {
            return false;
          }
        }
        ++operand_num;
      }
      return true;
    }
    
    // Utility function to map final permutation to initial permutation
    // initial -> permutation1 -> permutation2 -> final
    inline DenseElementsAttr RemapPermutation(Value permutation1,
                                              DenseElementsAttr perm2_const) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/runtime/debug/garbage.go

    // the soft memory limit in more detail, as well as a variety of common
    // use-cases and scenarios.
    //
    // The initial setting is math.MaxInt64 unless the GOMEMLIMIT
    // environment variable is set, in which case it provides the initial
    // setting. GOMEMLIMIT is a numeric value in bytes with an optional
    // unit suffix. The supported suffixes include B, KiB, MiB, GiB, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top