Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 980 for nameslice (0.23 sec)

  1. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	for _, namespace := range ignoredNamespaces.UnsortedList() {
    		// Create namespace in ignored list, make sure its not created
    		createNamespace(t, client.Kube(), namespace, newData)
    		// Configmap in that namespace should not do anything either
    		createConfigMap(t, client.Kube(), "not-root", namespace, "k")
    		expectConfigMapNotExist(t, nc.configmaps, namespace)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    {{- /* Kubernetes unfortunately requires a unique name for the webhook in some newer versions, so we assign
    a unique prefix to each. */}}
    - name: {{.Prefix}}sidecar-injector.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/util/in_mesh.go

    // enabled is true when namespace ns has 'istio-injection' label set to 'enabled'
    // ok is true when the namespace doesn't have the label 'istio-injection'
    func getNamesSidecarInjectionStatus(ns resource.Namespace, c analysis.Context) (enabled bool, ok bool) {
    	enabled, ok = false, false
    
    	namespace := c.Find(gvk.Namespace, resource.NewFullName("", resource.LocalName(ns)))
    	if namespace != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

            "name": "nameValue",
            "namespace": "namespaceValue"
          },
          "nodeStageSecretRef": {
            "name": "nameValue",
            "namespace": "namespaceValue"
          },
          "nodePublishSecretRef": {
            "name": "nameValue",
            "namespace": "namespaceValue"
          },
          "controllerExpandSecretRef": {
            "name": "nameValue",
            "namespace": "namespaceValue"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/impl/tensor_spec_test.cc

    #include "absl/hash/hash_testing.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    TEST(TensorSpecTest, TestSupportsAbslHash) {
      tensorflow::PartialTensorShape unknown_shape;
      TensorSpec ts1;
      ts1.shape = unknown_shape;
      ts1.dtype = tensorflow::DT_FLOAT;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 09:47:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. manifests/charts/default/templates/mutatingwebhook.yaml

      "injectionURL" .Values.istiodRemote.injectionURL
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    - name: {{.Prefix}}sidecar-injector.istio.io
      clientConfig:
        {{- if .injectionURL }}
        url: {{ .injectionURL }}
        {{- else }}
        service:
          name: istiod{{- if not (eq .revision "") }}-{{ .revision }}{{- end }}
          namespace: {{ .namespace }}
          path: "/inject"
        {{- end }}
      sideEffects: None
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

            kind: kindValue
            name: nameValue
            namespace: namespaceValue
            resourceVersion: resourceVersionValue
            uid: uidValue
          csi:
            controllerExpandSecretRef:
              name: nameValue
              namespace: namespaceValue
            controllerPublishSecretRef:
              name: nameValue
              namespace: namespaceValue
            driver: driverValue
            fsType: fsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/lib/variables.libsonnet

        )
        + var.query.withRefresh('time')
        + var.query.selectionOptions.withMulti()
        + var.query.selectionOptions.withIncludeAll(),
    
      namespace:
        var.query.new('namespace')
        + var.query.withDatasourceFromVariable(self.datasource)
        + var.query.queryTypes.withLabelValues(
          'namespace',
          'process_cpu_seconds_total{cluster=~"$%s"}' % self.cluster.name,
        )
        + var.query.withRefresh('time'),
    
      job:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. pkg/controller/serviceaccount/serviceaccounts_controller.go

    			return
    		}
    	}
    	c.queue.Add(sa.Namespace)
    }
    
    // namespaceAdded reacts to a Namespace creation by creating a default ServiceAccount object
    func (c *ServiceAccountsController) namespaceAdded(obj interface{}) {
    	namespace := obj.(*v1.Namespace)
    	c.queue.Add(namespace.Name)
    }
    
    // namespaceUpdated reacts to a Namespace update (or re-list) by creating a default ServiceAccount in the namespace if needed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. pkg/test/framework/components/ambient/waypoint.go

    	}
    	return nil
    }
    
    // WaypointProxy describes a waypoint proxy deployment
    type WaypointProxy interface {
    	Namespace() namespace.Instance
    	Inbound() string
    	Outbound() string
    	PodIP() string
    }
    
    // NewWaypointProxy creates a new WaypointProxy.
    func NewWaypointProxy(ctx resource.Context, ns namespace.Instance, name string) (WaypointProxy, error) {
    	server := &kubeComponent{
    		ns: ns,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top