Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,736 for namespace_b (0.21 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Namespace.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyExtraInfoTest.groovy

        }
    
        def "can get by name and namespace" () {
            given:
            def extraInfo = new DefaultIvyExtraInfo([
                    (new NamespaceId('http://my.extra.info', 'foo')): 'fooValue',
                    (new NamespaceId('http://some.extra.info', 'foo')): 'anotherValue'
            ])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyExtraInfo.java

            }
            return foundEntries.size() == 0 ? null : foundEntries.get(0).getValue();
        }
    
        @Override
        public String get(String namespace, String name) {
            return extraInfo.get(new NamespaceId(namespace, name));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/tls-cert-cross-namespace.yaml

    kind: Gateway
    metadata:
      name: cross-namespace-tls-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: https
        protocol: HTTPS
        port: 443
        hostname: "*.example.com"
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: wildcard-example-com-cert
            namespace: gateway-api-example-ns2
    ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 778 bytes
    - Viewed (0)
  5. plugin/pkg/admission/podtolerationrestriction/doc.go

    // any conflict between a pod's tolerations and its namespace's
    // tolerations, and rejects the pod if there's a conflict.  If there's
    // no conflict, the pod's tolerations are merged with its namespace's
    // toleration. Resulting pod's tolerations are verified against its
    // namespace's whitelist of tolerations. If the verification is
    // successful, the pod is admitted otherwise rejected. If a namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/0-namespaces.yaml

    # These namespaces can be used for examples without recreating them each time.
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: gateway-api-example-ns1
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 233 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/DefaultMutableIvyModuleResolveMetadata.java

        @Override
        public ImmutableList<Exclude> getExcludes() {
            return excludes;
        }
    
        @Override
        public ImmutableMap<NamespaceId, String> getExtraAttributes() {
            return extraAttributes;
        }
    
        @Override
        public void setExtraAttributes(Map<NamespaceId, String> extraAttributes) {
            this.extraAttributes = ImmutableMap.copyOf(extraAttributes);
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyExtraInfoSpec.java

    import org.gradle.api.internal.artifacts.ivyservice.NamespaceId;
    import org.gradle.api.publish.ivy.IvyExtraInfoSpec;
    import org.gradle.internal.xml.XmlValidation;
    
    public class DefaultIvyExtraInfoSpec extends DefaultIvyExtraInfo implements IvyExtraInfoSpec {
        public DefaultIvyExtraInfoSpec() {
            super();
        }
    
        @Override
        public void add(String namespace, String name, String value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

        namespace: istio-system
      rules:
      - backendRefs:
        - name: httpbin
          port: 85
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: bind-cross-namespace
      namespace: group-namespace1
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
        sectionName: slctr-labels
      - name: gateway
        namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. 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)
Back to top