Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,736 for namespace_b (0.33 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/NamespaceIdTest.groovy

            "some-namespace1" | "some-name"  | "some-namespace2" | "some-name"
            "some-namespace"  | "some-name1" | "some-namespace"  | "some-name2"
            "some-namespace1" | "some-name"  | "some-namespace"  | "some-name2"
        }
    
        def "toString returns name" () {
            given:
            NamespaceId id = new NamespaceId("some-namespace", "some-name")
    
            expect:
            id.toString().equals("some-name")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/NamespaceId.java

                String namespace = dis.readUTF();
                String name = dis.readUTF();
                return new NamespaceId(namespace, name);
            } catch (Exception e) {
                throw new RuntimeException("Failed decoding namespace ID");
            }
        }
    
        public NamespaceId(String namespace, String name) {
            this.namespace = namespace;
            this.name = name;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K 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. 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)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-multiple-policies-out.yaml

                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/namespaces1/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/namespaces2/.*
          ns[foo]-policy[httpbin-8]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-route-attachment/gateway-namespaces.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: prod-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: foo-lb
      listeners:
      - name: prod-web
        port: 80
        protocol: HTTP
        allowedRoutes:
          kinds:
          - kind: HTTPRoute
          namespaces:
            from: Selector
            selector:
              matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 446 bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/multiple-policies-out.yaml

                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/namespaces1/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/namespaces2/.*
          ns[foo]-policy[httpbin-8]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher_test.go

    			expectedLabels: namespace2Labels,
    		},
    		{
    			name:           "request is for updating namespace, the labels should be from the new object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 00:41:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top