Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 461 for wildCards (0.13 sec)

  1. cmd/batch-expire_test.go

      rules:
        - type: object  # regular objects with zero or more older versions
          name: NAME # match object names that satisfy the wildcard expression.
          olderThan: 70h # match objects older than this value
          createdBefore: "2006-01-02T15:04:05.00Z" # match objects created before "date"
          tags:
            - key: name
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// a network host (e.g. "foo.bar.com") or "wildcard", which is a domain name
    	// prefixed with a single wildcard label (e.g. "*.foo.com").
    	// The wildcard character '*' must appear by itself as the first DNS label and
    	// matches only a single label. You cannot have a wildcard label by itself (e.g. Host == "*").
    	// Requests will be matched against the Host field in the following way:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run_test.go

    			},
    		},
    		{
    			"inbound-ports-wildcard",
    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = "*"
    			},
    		},
    		{
    			"inbound-ports-tproxy",
    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = "32000,31000"
    				cfg.InboundInterceptionMode = constants.TPROXY
    			},
    		},
    		{
    			"inbound-ports-wildcard-tproxy",
    			func(cfg *config.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/stablehlo/stablehlo.py

    signatures that do not rely on MLIR classes.
    
    Exporting all of MLIR Python bindings to TF OSS has high maintenance
    implications, especially given the frequency that TF updates the revision of
    LLVM used.
    """
    
    # pylint: disable=wildcard-import
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 19:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. pkg/bootstrap/option/instances_test.go

    			expected: option.LocalhostValue("::1"),
    		},
    		{
    			testName: "wildcard v4",
    			key:      "wildcard",
    			option:   option.Wildcard(option.WildcardIPv4),
    			expected: option.WildcardValue("0.0.0.0"),
    		},
    		{
    			testName: "wildcard v6",
    			key:      "wildcard",
    			option:   option.Wildcard(option.WildcardIPv6),
    			expected: option.WildcardValue("::"),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/clusterrole.yaml

      - apiGroups: ["config.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io", "rbac.istio.io", "telemetry.istio.io", "extensions.istio.io"]
        verbs: ["update"]
        # TODO: should be on just */status but wildcard is not supported
        resources: ["*"]
    
      # Needed because status reporter sets the config map owner reference to the istiod pod
      - apiGroups: [""]
        verbs: ["update"]
        resources: ["pods/finalizers"]
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

            return typeOfListFrom(type.getTypeVariables());
        }
    
        /**
         * Queries whether this object represents a wildcard type expression, such as
         * {@code ?}, {@code ? extends Number}, or {@code ? super Integer}.
         *
         * @return true if this object represents a wildcard type expression.
         * @see #getUpperBound()
         */
        public boolean isWildcard() {
            return type.isWildcard();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

      }
    
      /** Check that wildcard SANs are supported.  */
      @Test
      fun commonThenWildcard() {
        server.enqueue(MockResponse())
        server.enqueue(MockResponse())
        assert200Http2Response(execute(url), server.hostName)
        val sanUrl = url.newBuilder().host("www.wildcard.com").build()
        assert200Http2Response(execute(sanUrl), "www.wildcard.com")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. tests/testdata/config/destination-rule-all.yaml

        - address: 127.0.0.2
          ports:
            http: 7072
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: destall
      namespace: testns
    spec:
      # DNS name, prefix wildcard, short name relative to context
      # IP or CIDR only for services in gateways
      host: destall.default.svc.cluster.local
      trafficPolicy:
        loadBalancer:
          simple: ROUND_ROBIN
        connectionPool:
          tcp:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  10. cmd/global-heal.go

    			// no need to heal them skip, only when bucket
    			// is '.minio.sys'
    			if bucket == minioMetaBucket {
    				if wildcard.Match("buckets/*/.metacache/*", entry.name) {
    					return
    				}
    				if wildcard.Match("tmp/.trash/*", entry.name) {
    					return
    				}
    				if wildcard.Match("multipart/*", entry.name) {
    					return
    				}
    			}
    
    			// erasureObjects layer needs object names to be encoded
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top