Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for stableId (0.26 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    	env.pollForPathExists("/apis/stable.example.com/v1/coolbars")
    	env.pollForPathExists("/apis/stable.example.com/v1beta1/coolbars")
    	s := env.fetchOpenAPIOrDie()
    	env.expectPath(s, "/apis/stable.example.com/v1/coolbars")
    	env.expectPath(s, "/apis/stable.example.com/v1beta1/coolbars")
    	env.expectPath(s, "/apis/apiextensions.k8s.io/v1")
    }
    
    func TestCRDMultiVersionUpdate(t *testing.T) {
    	env, ctx := setup(t)
    	env.runFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    					},
    				},
    			},
    			summaryErr: nil,
    			expectedMetrics: `
    				# HELP node_cpu_usage_seconds_total [STABLE] Cumulative cpu time consumed by the node in core-seconds
    				# TYPE node_cpu_usage_seconds_total counter
    				node_cpu_usage_seconds_total 10 1624396278302
    				# HELP node_memory_working_set_bytes [STABLE] Current working set of the node in bytes
    				# TYPE node_memory_working_set_bytes gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  3. src/sort/sort_test.go

    	}
    	data.initB()
    	Stable(data)
    	if !IsSorted(data) {
    		t.Errorf("Stable didn't sort %d ints", n)
    	}
    	if !data.inOrder() {
    		t.Errorf("Stable wasn't stable on %d ints", n)
    	}
    
    	// already sorted
    	data.initB()
    	Stable(data)
    	if !IsSorted(data) {
    		t.Errorf("Stable shuffled sorted %d ints (order)", n)
    	}
    	if !data.inOrder() {
    		t.Errorf("Stable shuffled sorted %d ints (stability)", n)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/version_test.go

    	}
    
    	currentVersion := normalizedBuildVersion(constants.CurrentKubernetesVersion.String())
    
    	cases := map[string]T{
    		"stable":          {"stable-1", "v1.4.6", false, false}, // recursive pointer to stable-1
    		"stable-1":        {"v1.4.6", "v1.4.6", false, false},
    		"stable-1.3":      {"v1.3.10", "v1.3.10", false, false},
    		"latest":          {"v1.6.0-alpha.0", "v1.6.0-alpha.0", false, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. pkg/scheduler/metrics/metrics.go

    			Buckets:        metrics.ExponentialBuckets(1, 2, 7),
    			StabilityLevel: metrics.STABLE,
    		})
    	PreemptionAttempts = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      SchedulerSubsystem,
    			Name:           "preemption_attempts_total",
    			Help:           "Total preemption attempts in the cluster till now",
    			StabilityLevel: metrics.STABLE,
    		})
    	pendingPods = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    	TypeMeta: metav1.TypeMeta{
    		APIVersion: "apiextensions.k8s.io/v1",
    		Kind:       "CustomResourceDefinition",
    	},
    	ObjectMeta: metav1.ObjectMeta{
    		Name: "coolfoo.stable.example.com",
    	},
    	Spec: v1.CustomResourceDefinitionSpec{
    		Group: "stable.example.com",
    		Names: v1.CustomResourceDefinitionNames{
    			Plural:     "coolfoos",
    			Singular:   "coolfoo",
    			ShortNames: []string{"foo"},
    			Kind:       "CoolFoo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// alpha: v1.27
    	// beta: v1.28
    	// stable: v1.30
    	// kep: https://kep.k8s.io/3716
    	//
    	// Enables usage of MatchConditions fields to use CEL expressions for matching on admission webhooks
    	AdmissionWebhookMatchConditions featuregate.Feature = "AdmissionWebhookMatchConditions"
    
    	// owner: @jefftree @alexzielenski
    	// alpha: v1.26
    	// beta: v1.27
    	// stable: v1.30
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. pkg/scheduler/metrics/resources/resources_test.go

    		},
    	}})
    
    	r := httptest.NewRecorder()
    	req, err := http.NewRequest("GET", "/metrics/resources", nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	h.ServeHTTP(r, req)
    
    	expected := `# HELP kube_pod_resource_limit [STABLE] Resources limit for workloads on the cluster, broken down by pod. This shows the resource usage the scheduler and kubelet expect per pod for resources along with the unit for the resource if any.
    # TYPE kube_pod_resource_limit gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  9. src/sort/sort.go

    //    grow as n log n but the algorithm is not stable.
    //  - "Fast Stable In-Place Sorting with O(n) Data Moves" J.I. Munro and
    //    V. Raman in Algorithmica (1996) 16, 115-160:
    //    This algorithm either needs additional 2n bits or works only if there
    //    are enough different elements available to encode some permutations
    //    which have to be undone later (so not stable on any input).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/graph/AbstractStandardUndirectedGraphTest.java

      }
    
      // Stable order tests
    
      // Note: Stable order means that the ordering doesn't change between iterations and versions.
      // Ideally, the ordering in test should never be updated.
      @Test
      public void stableIncidentEdgeOrder_edges_returnsInStableOrder() {
        assume().that(graph.incidentEdgeOrder().type()).isEqualTo(ElementOrder.Type.STABLE);
    
        populateTShapedGraph();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top