Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 461 for wildCards (0.17 sec)

  1. internal/bucket/versioning/versioning.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package versioning
    
    import (
    	"encoding/xml"
    	"io"
    	"strings"
    
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    // State - enabled/disabled/suspended states
    // for multifactor and status of versioning.
    type State string
    
    // Various supported states
    const (
    	Enabled State = "Enabled"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifact.java

         * @param classifier The classifier.
         */
        void setClassifier(@Nullable String classifier);
    
        /**
         * A comma separated list of public configurations in which this artifact is published.
         * The '*' wildcard is used to designate that the artifact is published in all public configurations.
         * A <code>null</code> value (the default) indicates that this artifact will be published without a conf attribute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      // 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: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressFactoryTest.groovy

            then:
            factory.communicationAddresses.every {
                factory.isCommunicationAddress(it)
            }
    
            !factory.isCommunicationAddress(ip(127, 0, 0, 3))
        }
    
        def "wildcard address is always present"() {
    
            when:
            defaultAddresses()
    
            then:
            factory.wildcardBindingAddress == new InetSocketAddress(0).address
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. pkg/test/echo/common/model.go

    	TLS bool
    
    	// ServerFirst if a port will be server first
    	ServerFirst bool
    
    	// InstanceIP determines if echo will listen on the instance IP, or wildcard
    	InstanceIP bool
    
    	// LocalhostIP determines if echo will listen on the localhost IP; otherwise, it will listen on wildcard
    	LocalhostIP bool
    
    	// XDSServer, for gRPC servers, will use the xds.NewGRPCServer constructor to rely on XDS configuration.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_beta.yaml

    metadata:
      name: testing-service-01-test-02
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-02
      hosts:
      - 'web.testing-02.com' # Expected: no validation error since this host match the wildcard
      http:
      - match:
        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/tls-cert-cross-namespace.yaml

      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
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: ReferenceGrant
    metadata:
      name: allow-ns1-gateways-to-ref-secrets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 778 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

         * @throws IllegalStateException if this is a wildcard.
         * @throws IllegalArgumentException if the given type is a wildcard.
         */
        public <U> ModelType<? extends U> asSubtype(ModelType<U> modelType) {
            if (isWildcard()) {
                throw new IllegalStateException(this + " is a wildcard type");
            }
            if (modelType.isWildcard()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix_beta.yaml

    metadata:
      name: testing-service-01-test-02
      namespace: default
    spec:
      gateways:
        - istio-system/testing-gateway-2
      hosts:
        - testing-01.com # Expected: no validation error because the gateway ns prefix is a wildcard match
      http:
        - match:
            - uri:
                prefix: /
          route:
            - destination:
                host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_split.txt

    # A wildcard that matches packages in some module at its selected version
    # but not at the requested version should fail.
    #
    # We can't set the module to the selected version, because that version doesn't
    # even match the query: if we ran the same query twice, we wouldn't consider the
    # module to match the wildcard during the second call, so why should we consider
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top