Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,965 for nameslice (0.13 sec)

  1. src/os/dir_windows.go

    				nextEntryOffset = info.NextEntryOffset
    				nameslice = unsafe.Slice(&info.FileName[0], info.FileNameLength/2)
    			}
    			d.bufp += int(nextEntryOffset)
    			islast = nextEntryOffset == 0
    			if islast {
    				d.bufp = 0
    			}
    			if (len(nameslice) == 1 && nameslice[0] == '.') ||
    				(len(nameslice) == 2 && nameslice[0] == '.' && nameslice[1] == '.') {
    				// Ignore "." and ".." and avoid allocating a string for them.
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/namespace.go

    	Sotw echo.Instances
    	// All echo apps in this namespace
    	All echo.Services
    }
    
    func (n EchoNamespace) build(b deployment.Builder, cfg Config) deployment.Builder {
    	for _, config := range cfg.Configs.Get() {
    		if config.Namespace == nil {
    			config.Namespace = n.Namespace
    		}
    		if config.Namespace.Name() == n.Namespace.Name() {
    			b = b.WithConfig(config)
    		}
    	}
    	return b
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/namespace/namespace.go

    	Inject bool
    	// Revision is the namespace of custom injector instance
    	Revision string
    	// Labels to be applied to namespace
    	Labels map[string]string
    	// SkipDump, if enabled, will disable dumping the namespace. This is useful to avoid duplicate
    	// dumping of istio-system.
    	SkipDump bool
    	// SkipCleanup, if enabled, the namespace will not be deleted during cleanup. Used for istio-system namespace
    	SkipCleanup bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/namespace.go

    	return extractNamespace(namespace, fieldManager, "status")
    }
    
    func extractNamespace(namespace *apicorev1.Namespace, fieldManager string, subresource string) (*NamespaceApplyConfiguration, error) {
    	b := &NamespaceApplyConfiguration{}
    	err := managedfields.ExtractInto(namespace, internal.Parser().Type("io.k8s.api.core.v1.Namespace"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(namespace.Name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12K bytes
    - Viewed (0)
  5. samples/ambient-argo/application/namespace.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 56 bytes
    - Viewed (0)
  6. cni/test/testdata/k8s_svcacct/namespace

    John Howard <******@****.***> 1605827959 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 11 bytes
    - Viewed (0)
  7. cmd/namespace-lock.go

    	return &nsMutex
    }
    
    // nsLock - provides primitives for locking critical namespace regions.
    type nsLock struct {
    	ref int32
    	*lsync.LRWMutex
    }
    
    // nsLockMap - namespace lock map, provides primitives to Lock,
    // Unlock, RLock and RUnlock.
    type nsLockMap struct {
    	// Indicates if namespace is part of a distributed setup.
    	isDistErasure bool
    	lockMap       map[string]*nsLock
    	lockMapMutex  sync.Mutex
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 05 23:56:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/namespace-roles.yaml

        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:bootstrap-signer
        namespace: kube-public
      rules:
      - apiGroups:
        - ""
        resources:
        - configmaps
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resourceNames:
        - cluster-info
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 16 01:37:43 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-namespace.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
      namespace: test
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello  
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 480 bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/namespace-role-bindings.yaml

        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:bootstrap-signer
        namespace: kube-public
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: Role
        name: system:controller:bootstrap-signer
      subjects:
      - kind: ServiceAccount
        name: bootstrap-signer
        namespace: kube-system
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: RoleBinding
      metadata:
        annotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 08 16:15:52 UTC 2019
    - 3.9K bytes
    - Viewed (0)
Back to top