Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,540 for namespace_a (0.23 sec)

  1. docs/bucket/notifications/README.md

    index*       (string)             Elasticsearch index to store/update events, index is auto-created
    format*      (namespace*|access)  'namespace' reflects current bucket/object list and 'access' reflects a journal of object operations, defaults to 'namespace'
    queue_dir    (path)               staging dir for undelivered messages e.g. '/home/events'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    	"namespaces":   "`namespaces` is a list of target namespaces that restricts matches.  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    	"namespaces":   "`namespaces` is a list of target namespaces that restricts matches.  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            }
        }
    
        def "supports rule with typed IvyModuleDescriptor parameter"() {
            def metadata = ivyMetadata()
            def id1 = new NamespaceId('namespace', 'info1')
            def id2 = new NamespaceId('namespace', 'info2')
            def extraAttrs = [:]
            extraAttrs[id1] = "info1 value"
            extraAttrs[id2] = "info2 value"
            metadata.extraAttributes = extraAttrs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo_test.go

    	}{
    
    		// resource paths
    		{"GET", "/api/v1/namespaces", "list", "api", "", "v1", "", "namespaces", "", "", []string{"namespaces"}},
    		{"GET", "/api/v1/namespaces/other", "get", "api", "", "v1", "other", "namespaces", "", "other", []string{"namespaces", "other"}},
    
    		{"GET", "/api/v1/namespaces/other/pods", "list", "api", "", "v1", "other", "pods", "", "", []string{"pods"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 15 12:19:21 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  6. pkg/client/tests/listwatch_test.go

    			resource:      "pods",
    			namespace:     metav1.NamespaceAll,
    			fieldSelector: fields.Set{"spec.host": ""}.AsSelector(),
    		},
    		{
    			desc: "pod in namespace 'foo'",
    			location: buildLocation(
    				"/api/v1/namespaces/foo/pods",
    				buildQueryValues(url.Values{fieldSelectorQueryParamName: []string{"spec.host="}})),
    			resource:      "pods",
    			namespace:     "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 17:08:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/reference-policy-tls.yaml

        tls:
          mode: Terminate
          certificateRefs:
          - name: cert
            namespace: cert
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: ReferenceGrant
    metadata:
      name: allow-cert
      namespace: cert
    spec:
      from:
      - group: gateway.networking.k8s.io
        kind: Gateway
        namespace: istio-system
      to:
        - group: ""
          kind: Secret
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml

    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      gatewayClassName: istio
      listeners:
      - name: default
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: default
    spec:
      parentRefs:
      - name: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/cni-watcher_test.go

    	pluginServer := startCniPluginServer(ctx, "/tmp/test.sock", handlers, dpServer)
    
    	// label the namespace
    	labelsPatch := []byte(fmt.Sprintf(`{"metadata":{"labels":{"%s":"%s"}}}`,
    		constants.DataplaneModeLabel, constants.DataplaneModeAmbient))
    	_, err := client.Kube().CoreV1().Namespaces().Patch(ctx, ns.Name,
    		types.MergePatchType, labelsPatch, metav1.PatchOptions{})
    	assert.NoError(t, err)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

      # rule[6] `from`: HTTP field, `to`: HTTP + TCP field.
      - from:
        - source:
              namespaces: ["ns-2"]
              requestPrincipals: ["id-1"]
        to:
        - operation:
              ports: ["8080"]
              methods: ["GET"]
      # rule[7] `from`: TCP field, `to`: TCP field.
      - from:
        - source:
            namespaces: ["ns-1"]
        to:
        - operation:
            ports: ["80"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top