Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,087 for namespace1 (0.18 sec)

  1. releasenotes/notes/pilot-discovery-scoped-namespaces.yaml

    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Added** Specify `meshConfig.discoverySelectors` to dynamically restrict the set of namespaces for Services, Pods, and Endpoints that istiod processes when pushing xDS updates to improve performance on the data plane.
    
    # upgradeNotes is a markdown listing of any changes that will affect the upgrade
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 19:34:37 UTC 2021
    - 904 bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	)
    
    	prf0 := statsapi.PodReference{Name: pName0, Namespace: namespace0, UID: "UID" + pName0}
    	prf1 := statsapi.PodReference{Name: pName1, Namespace: namespace0, UID: "UID" + pName1}
    	prf2 := statsapi.PodReference{Name: pName2, Namespace: namespace2, UID: "UID" + pName2}
    	prf3 := statsapi.PodReference{Name: pName3, Namespace: namespace0, UID: "UID" + pName3}
    	infos := map[string]cadvisorapiv2.ContainerInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. api/discovery/api__v1.json

          "namespaced": false,
          "shortNames": [
            "ns"
          ],
          "singularName": "namespace",
          "storageVersionHash": "Q3oi5N2YM8M=",
          "verbs": [
            "create",
            "delete",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "Namespace",
          "name": "namespaces/finalize",
          "namespaced": false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    	numTries := 0
    	retryOnce := func(ctx context.Context, namespace *v1.Namespace) (*v1.Namespace, error) {
    		numTries++
    		if numTries <= 1 {
    			return namespace, errors.NewConflict(api.Resource("namespaces"), namespace.Name, fmt.Errorf("ERROR"))
    		}
    		return namespace, nil
    	}
    	namespace := &v1.Namespace{}
    	d := namespacedResourcesDeleter{
    		nsClient: mockClient.CoreV1().Namespaces(),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  5. hack/testdata/CRD/example-crd-1-namespaced-resource.yaml

    apiVersion: test.com/v1
    kind: Example
    metadata:
      name: test
      namespace: default
    spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 26 06:01:46 UTC 2022
    - 101 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/service-no-port-name-system-namespace.yaml

    # If the service is in system namespace, i.e., kube-system, istio-system, kube-public, the check will be skipped.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service1
      namespace: kube-system  # Skipped because it's in a kube system namespace
    spec:
      selector:
        app: my-service1
      ports:
        - protocol: TCP
          port: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/operations.go

    	resource, namespaced, err := gc.apiResource(item.APIVersion, item.Kind)
    	if err != nil {
    		return nil, err
    	}
    	namespace := resourceDefaultNamespace(namespaced, item.Namespace)
    	if namespaced && len(namespace) == 0 {
    		// the type is namespaced, but we have no namespace coordinate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    CppConfig::CppConfig(const string &category, const string &name_space)
        : category(category),
          unit(str_util::Lowercase(category)),
          namespaces(absl::StrSplit(name_space, "::")) {}
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/multiple-policies-in.yaml

    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: httpbin-7
      namespace: foo
    spec:
      rules:
        - from:
            - source:
                namespaces: ["namespaces1", "namespaces2"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: httpbin-8
      namespace: foo
    spec:
      rules:
        - from:
            - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			namespace: "",
    		},
    
    		// Group API
    
    		// legacy namespace param is ignored
    		{
    			url:       "/" + prefix + "/" + testGroupVersion.Group + "/" + testGroupVersion.Version + "/simple?namespace=",
    			namespace: "",
    			legacy:    true,
    		},
    		{
    			url:       "/" + prefix + "/" + testGroupVersion.Group + "/" + testGroupVersion.Version + "/simple?namespace=other",
    			namespace: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top