Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 5,965 for nameslice (0.39 sec)

  1. pkg/registry/core/pod/rest/metrics.go

    )
    
    const (
    	namespace = "kube_apiserver"
    	subsystem = "pod_logs"
    
    	usageEnforce     = "enforce_tls"
    	usageSkipAllowed = "skip_tls_allowed"
    )
    
    var (
    	// podLogsUsage counts and categorizes how the insecure backend skip TLS option is used and allowed.
    	podLogsUsage = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 16:43:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. pkg/serviceaccount/legacy.go

    	}
    
    	// Make sure the claims we need exist
    	if len(public.Subject) == 0 {
    		return nil, errors.New("sub claim is missing")
    	}
    	namespace := private.Namespace
    	if len(namespace) == 0 {
    		return nil, errors.New("namespace claim is missing")
    	}
    	secretName := private.SecretName
    	if len(secretName) == 0 {
    		return nil, errors.New("secretName claim is missing")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/conversion_test.go

    	}
    }
    
    func TestServiceConversionWithEmptyServiceAccountsAnnotation(t *testing.T) {
    	serviceName := "service1"
    	namespace := "default"
    
    	ip := "10.0.0.1"
    
    	localSvc := corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        serviceName,
    			Namespace:   namespace,
    			Annotations: map[string]string{},
    		},
    		Spec: corev1.ServiceSpec{
    			ClusterIP: ip,
    			Ports: []corev1.ServicePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    			tc.endpoints.Name = endpointsName
    			tc.endpoints.Namespace = namespace
    			esController.endpointsStore.Add(tc.endpoints)
    			if tc.service != nil {
    				tc.service.Name = endpointsName
    				tc.service.Namespace = namespace
    				esController.serviceStore.Add(tc.service)
    			}
    
    			for _, epSlice := range tc.endpointSlices {
    				epSlice.Namespace = namespace
    				esController.endpointSliceStore.Add(epSlice)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			attrs:  authorizer.AttributesRecord{User: node0, ResourceRequest: true, Verb: "get", Resource: "leases", APIGroup: "coordination.k8s.io", Name: "node0", Namespace: "foo"},
    			expect: authorizer.DecisionNoOpinion,
    		},
    		{
    			name:   "disallowed create lease in namespace other than kube-node-lease - feature enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  6. pkg/registry/core/service/portallocator/metrics.go

    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    const (
    	namespace = "kube_apiserver"
    	subsystem = "nodeport_allocator"
    )
    
    var (
    	// nodePortAllocated indicates the amount of ports allocated by NodePort Service.
    	nodePortAllocated = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "allocated_ports",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 06:44:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/verify_clustering_pass.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/utils/dialect_detection_utils.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    namespace {
    
    #define GEN_PASS_DEF_VERIFYCLUSTERINGPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    using mlir::Operation;
    using mlir::WalkResult;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 20:33:37 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	framework.NewTest(t).
    		RequireIstioVersion("1.11").
    		Run(func(t framework.TestContext) {
    			serviceA = match.ServiceName(echo.NamespacedName{Name: common.ServiceA, Namespace: echos.Namespace})
    			serviceB = match.ServiceName(echo.NamespacedName{Name: common.ServiceB, Namespace: echos.Namespace})
    			// Don't export service B in any cluster. All requests should stay in-cluster.
    			for _, ht := range hostTypes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/manager_test.go

    	podUID := "test-pod-uid"
    	namespace := "test-namespace"
    
    	claimInfo := &ClaimInfo{
    		ClaimInfoState: state.ClaimInfoState{PodUIDs: sets.New(podUID), ClaimName: claimName, Namespace: namespace},
    	}
    	manager.cache.add(claimInfo)
    	if !manager.cache.contains(claimName, namespace) {
    		t.Fatalf("failed to get claimInfo from cache for claim name %s, namespace %s: err:%v", claimName, namespace, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:29 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/inference/inference_metrics_pass.cc

    #include "tensorflow/core/lib/monitoring/counter.h"
    
    namespace mlir {
    namespace tf2xla {
    namespace internal {
    
    auto* has_tpu_partitioned_call_streamz =
        tensorflow::monitoring::Counter<1>::New(
            "/tensorflow/core/tf2xla/internal/inference/tpu_partitioned_call",
            "Whether the model has TPUPartitionedCallOp.",
            "has_tpu_partitioned_call");
    
    namespace {
    
    #define GEN_PASS_DEF_INFERENCEMETRICSPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 05 21:24:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top