Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 166 for wildcards (0.17 sec)

  1. 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)
  2. releasenotes/notes/47290.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 47290
      - 47264
      - 31250
      - 33360
      - 30531
      - 38484
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 08:34:42 UTC 2023
    - 270 bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/lds_test.go

    		want        listenerNames
    		wantInbound []string
    	}{
    		"simple": {
    			in: []string{"foo.com:80", "foo.com:443", "wildcard.com"},
    			want: listenerNames{
    				"foo.com": {
    					RequestedNames: sets.New("foo.com"),
    					Ports:          sets.New("80", "443"),
    				},
    				"wildcard.com": {RequestedNames: sets.New("wildcard.com")},
    			},
    		},
    		"plain-host clears port-map": {
    			in:   []string{"foo.com:80", "foo.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/testdata/script/list_std.txt

    go list -f '{{if .Standard}}{{.ImportPath}}{{end}}' std cmd
    stdout golang.org/x/net/http2/hpack
    stdout cmd/vendor/golang\.org/x/arch/x86/x86asm
    
    # However, vendored packages should not match wildcard patterns beginning with cmd.
    go list cmd/...
    stdout cmd/compile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 702 bytes
    - Viewed (0)
Back to top