Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 5,965 for nameslice (0.17 sec)

  1. istioctl/pkg/multicluster/options.go

    	Kubeconfig string
    	Context    string
    	Namespace  string
    }
    
    // Inherit the common kubernetes flags defined in the root package. This is a bit of a hack,
    // but it allows us to directly get the final values for each of these flags without needing
    // to pass pointers-to-flags through all of the (sub)commands.
    func (o *KubeOptions) prepare(ctx cli.Context) {
    	o.Namespace = ctx.Namespace()
    	if o.Namespace == "" {
    		o.Namespace = ctx.IstioNamespace()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 23:59:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. istioctl/pkg/util/handlers/handlers.go

    )
    
    // InferPodInfo Uses name to infer namespace if the passed name contains namespace information.
    // Otherwise uses the namespace value passed into the function
    func InferPodInfo(name, defaultNS string) (string, string) {
    	return inferNsInfo(name, defaultNS)
    }
    
    // inferNsInfo Uses name to infer namespace if the passed name contains namespace information.
    // Otherwise uses the namespace value passed into the function
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. test/codegen/slices.go

    	// amd64:-`.*runtime\.makeslice`
    	// ppc64x:`.*runtime\.memclrHasPointers`
    	// ppc64x:-`.*runtime\.makeslice`
    	return append(s, make([]*int, l)...)
    }
    
    func SliceExtensionVar(s []byte, l int) []byte {
    	// amd64:`.*runtime\.memclrNoHeapPointers`
    	// amd64:-`.*runtime\.makeslice`
    	// ppc64x:`.*runtime\.memclrNoHeapPointers`
    	// ppc64x:-`.*runtime\.makeslice`
    	return append(s, make([]byte, l)...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 18:57:27 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. cluster/gce/manifests/abac-authz-policy.jsonl

    {"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"user":"{{kube_user}}", "namespace": "*", "resource": "*", "apiGroup": "*", "nonResourcePath": "*"}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 01 16:39:56 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    		Namespace: namespace,
    		Subsystem: replicationSubsystem,
    		Name:      lastHourFailedBytes,
    		Help:      "Total number of bytes failed at least once to replicate in the last hour",
    		Type:      gaugeMetric,
    	}
    }
    
    func getRepFailedOperationsLastHourMD(namespace MetricNamespace) MetricDescription {
    	return MetricDescription{
    		Namespace: namespace,
    		Subsystem: replicationSubsystem,
    		Name:      lastHourFailedCount,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/impl/none.cc

    #include "tensorflow/cc/experimental/libtf/impl/none.h"
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    None& None::GetInstance() {
      static None* none_inst = new None();
      return *none_inst;
    }
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 03 20:03:31 UTC 2021
    - 930 bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_test.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    namespace {
    
    TEST(Renderer, typical_usage) {
      class TestRenderer : Renderer {
       public:
        explicit TestRenderer(SourceCode& code)
            : Renderer(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/ztunnel/configdump/services.go

    type ServiceFilter struct {
    	Namespace string
    }
    
    // Verify returns true if the passed workload matches the filter fields
    func (wf *ServiceFilter) Verify(svc *ZtunnelService) bool {
    	if wf.Namespace != "" {
    		if !strings.EqualFold(svc.Namespace, wf.Namespace) {
    			return false
    		}
    	}
    
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/fake_store.go

    func (s *FakeStore) Get(typ config.GroupVersionKind, name, namespace string) *config.Config {
    	nsConfigs := s.store[typ]
    	if nsConfigs == nil {
    		return nil
    	}
    
    	configs := nsConfigs[namespace]
    	if configs == nil {
    		return nil
    	}
    
    	if config, f := configs[name]; f {
    		return &config
    	}
    
    	return nil
    }
    
    func (s *FakeStore) List(typ config.GroupVersionKind, namespace string) []config.Config {
    	nsConfigs := s.store[typ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 18 06:50:06 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

    kind: VirtualService
    metadata:
      name: productpage
      namespace: foo
    spec:
      hosts:
      - productpage # should generate an error as this conflicts with VirtualService foo/bogus
      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: bogus-productpage
      namespace: foo
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top