Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for example2 (0.34 sec)

  1. src/reflect/all_test.go

    }
    
    func TestConvertibleTo(t *testing.T) {
    	t1 := ValueOf(example1.MyStruct{}).Type()
    	t2 := ValueOf(example2.MyStruct{}).Type()
    
    	// Shouldn't raise stack overflow
    	if t1.ConvertibleTo(t2) {
    		t.Fatalf("(%s).ConvertibleTo(%s) = true, want false", t1, t2)
    	}
    
    	t3 := ValueOf([]example1.MyStruct{}).Type()
    	t4 := ValueOf([]example2.MyStruct{}).Type()
    
    	if t3.ConvertibleTo(t4) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. docs/screenshots/Example-2.jpg

    Example-2.jpg...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 29 16:10:47 UTC 2017
    - 134.5K bytes
    - Viewed (0)
  3. docs/screenshots/Example-2.png

    Example-2.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 02:22:34 UTC 2017
    - 105.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/build-lifecycle-example.png

    build-lifecycle-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 132.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //	Mercurial   .hg
    //	Subversion  .svn
    //
    // For example,
    //
    //	import "example.org/user/foo.hg"
    //
    // denotes the root directory of the Mercurial repository at
    // example.org/user/foo or foo.hg, and
    //
    //	import "example.org/repo.git/foo/bar"
    //
    // denotes the foo/bar directory of the Git repository at
    // example.org/repo or repo.git.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    }{
    	{"", "anything.com", false, true},
    	{"example.com", "example.com", false, true},
    	{"example.com.", "example.com", true, false},
    	{"example.com", "example.com.", true, false},
    	{"example.com", "ExAmPle.coM", false, true},
    	{"example.com", "exampl1.com", false, false},
    	{"example.com", "www.ExAmPle.coM", false, true},
    	{"example.com", "sub.www.ExAmPle.coM", false, true},
    	{"example.com", "notexample.com", false, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"hd": "example.org",
    				"exp": %d
    			}`, valid.Unix()),
    			wantErr: "oidc: required claim hd value does not match. Got = example.org, want = example.com",
    		},
    		{
    			name: "invalid-signature",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:       "https://auth.example.com",
    						Audiences: []string{"my-client"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway_test.go

    			expectedVirtualHosts: map[string][]string{
    				"example.org:80": {
    					"example.org",
    				},
    			},
    			expectedVirtualHostsHostPortStrip: map[string][]string{
    				"example.org:80": {"example.org"},
    			},
    			// We will setup a VHost which just redirects; no routes
    			expectedHTTPRoutes:    map[string]int{"example.org:80": 0},
    			redirect:              true,
    			expectStatefulSession: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		},
    		"normalFiltered": {
    			in:  &example.PodList{Items: []example.Pod{*podA, *podB}},
    			m:   matchPodName("foo"),
    			out: &example.PodList{Items: []example.Pod{*podB}},
    		},
    		"normalFilteredNoNamespace": {
    			in:      &example.PodList{Items: []example.Pod{*podA, *podB}},
    			m:       matchPodName("foo"),
    			out:     &example.PodList{Items: []example.Pod{*podB}},
    			context: noNamespaceContext,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top