Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 199 for wildcards (0.17 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

            then:
            project.tasks.openIdea != null
        }
    
        def "configures idea project"() {
            when:
            applyPluginToProjects()
    
            then:
            project.idea.project.wildcards == ['!?*.java', '!?*.groovy', '!?*.class', '!?*.scala'] as Set
            project.idea.project.languageLevel.level ==  new IdeaLanguageLevel(JavaVersion.VERSION_1_6).level
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates_test.go

    					},
    				},
    			},
    			expected: map[string]int{
    				"a": 0, "b": 1,
    				"a.test.com": 0, "b.test.com": 1,
    				"test.com": 0,
    			},
    		},
    		{
    			// wildcards
    			certs: []namedtestCertSpec{
    				{
    					testCertSpec: testCertSpec{
    						host:  "a",
    						names: []string{"a.test.com", "test.com"},
    					},
    					explicitNames: []string{"*.test.com", "test.com"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 8K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/config/config.go

    			return nil, fmt.Errorf("bad label/annotation selection %s, must have format key=value", ss)
    		}
    		if strings.Contains(kv[0], "*") {
    			return nil, fmt.Errorf("bad label/annotation selection %s, key cannot have '*' wildcards", ss)
    		}
    		out[kv[0]] = kv[1]
    	}
    	return out, nil
    }
    
    func (s *SelectionSpec) UnmarshalJSON(b []byte) error {
    	ft := []ResourceType{Namespace, Deployment, Pod, Label, Annotation, Container}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. okhttp-tls/README.md

    By default server certificates need to identify which hostnames they're trusted for. You may add as
    many as necessary with `addSubjectAlternativeName()`. This mechanism also supports a very limited
    form of wildcards `*.example.com` where the `*` must be first and doesn't match nested subdomains.
    
    By default certificates use fast and secure 256-bit ECDSA keys. For interoperability with very old
    clients use `HeldCertificate.Builder.rsa2048()`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. pkg/credentialprovider/keyring.go

    // glob wild cards in the host name.
    //
    // Examples:
    //
    //	globURL=*.docker.io, targetURL=blah.docker.io => match
    //	globURL=*.docker.io, targetURL=not.right.io   => no match
    //
    // Note that we don't support wildcards in ports and paths yet.
    func URLsMatch(globURL *url.URL, targetURL *url.URL) (bool, error) {
    	globURLParts, globPort := SplitURL(globURL)
    	targetURLParts, targetPort := SplitURL(targetURL)
    	if globPort != targetPort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    # 'go install pkg@version' should report an error if an argument is not
    # a main package.
    ! go install example.com/cmd/a@v1.0.0 example.com/cmd/err@v1.0.0
    stderr '^package example.com/cmd/err is not a main package$'
    
    # Wildcards should match only main packages. This module has a non-main package
    # with an error, so we'll know if that gets built.
    mkdir tmp
    cd tmp
    go mod init m
    go get example.com/cmd@v1.0.0
    ! go build example.com/cmd/...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. releasenotes/notes/double-wildcard.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issues:
    - 25350
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 17 15:48:36 UTC 2020
    - 219 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/wildcard-tls-gateway.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: wildcard-tls-gateway
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: foo-https
        protocol: HTTPS
        port: 443
        hostname: foo.example.com
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: foo-example-com-cert
      - name: wildcard-https
        protocol: HTTPS
        port: 443
        hostname: "*.example.com"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 576 bytes
    - Viewed (0)
  9. pkg/config/host/name_test.go

    		{"wildcard matches anything", "*", "*", true},
    		{"wildcard matches anything", "", "*", true},
    
    		{"wildcarded domain matches wildcarded subdomain", "*.foo.com", "*.com", true},
    		{"wildcarded sub-domain does not match domain", "*.foo.com", "foo.com", false},
    
    		{"long wildcard does not match short host", "*.foo.bar.baz", "baz", false},
    		{"long name matches short wildcard", "foo.bar.baz", "*.baz", true},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 29 15:57:39 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top