Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for notbar (1.02 sec)

  1. platforms/documentation/docs/src/docs/css/javadoc.css

        transition: all 0.2s ease;
    }
    div.table-tabs > button.table-tab {
        background: var(--navbar-background-color);
        color: var(--navbar-text-color);
    }
    .page-search-header {
        padding: 5px 12px 7px 12px;
        font-weight: bold;
        margin-right: 3px;
        background-color:var(--navbar-background-color);
        color:var(--navbar-text-color);
        display: inline-block;
    }
    button.page-search-header {
        border: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar_test.go

    		{
    			Hostname: "foobar.svc.cluster.local",
    			Ports:    port803x,
    			Attributes: ServiceAttributes{
    				Name:      "foo",
    				Namespace: "ns1",
    			},
    		},
    		{
    			Hostname: "foobar.svc.cluster.local",
    			Ports:    port8000,
    			Attributes: ServiceAttributes{
    				Name:      "bar",
    				Namespace: "ns2",
    			},
    		},
    		{
    			Hostname: "foobar.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    					{
    						Patch: &networking.EnvoyFilter_Patch{},
    						Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    							Proxy: &networking.EnvoyFilter_ProxyMatch{ProxyVersion: `foobar`},
    						},
    					},
    				},
    			},
    		},
    		{
    			Meta: config.Meta{Name: "default-priority", Namespace: "testns", GroupVersionKind: gvk.EnvoyFilter},
    			Spec: &networking.EnvoyFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			UID:             uuid.NewUUID(),
    			Name:            "foobar",
    			Namespace:       metav1.NamespaceDefault,
    			ResourceVersion: "18",
    			Labels:          fooBar(),
    		},
    		Spec: v1.ReplicationControllerSpec{
    			Replicas: &size,
    			Selector: fooBar(),
    		},
    	}
    
    	rcName, err := controller.KeyFunc(rc)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                path 'foo:1.0 -> baz:1.0'
                path 'foo:1.2 -> baz:1.2'
                path 'foo:1.5 -> baz:1.5'
    
                path 'baz:1.0 -> fooBar:1.0'
                path 'baz:1.2 -> fooBar:1.2'
                path 'baz:1.5 -> fooBar:1.5'
    
                'org:bar:1.0'()
                'org:bar:1.2'()
                'org:bar:1.5'()
                'org:fooBar:1.0'()
                'org:fooBar:1.2'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    	buf := make([]byte, 6)
    	if _, err := srv.Write([]byte("foobar")); err != nil {
    		t.Errorf("Write err: %v", err)
    	}
    	if n, err := conn.Read(buf); n != 6 || err != nil || string(buf) != "foobar" {
    		t.Errorf("Read = %d, %v, data %q; want 6, nil, foobar", n, err, buf)
    	}
    
    	// Set a deadline which should cause Write to timeout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    		expectedEndpoints     []discovery.Endpoint
    	}{
    		{
    			name: "pods with multiple IPs and Service with ipFamilies=ipv4",
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "foobar",
    					Namespace:         "default",
    					CreationTimestamp: creationTimestamp,
    				},
    				Spec: v1.ServiceSpec{
    					Ports: []v1.ServicePort{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                    it.useTarget "foobar"
                }
    """
    
            when:
            fails "checkDeps"
    
            then:
            failure.assertHasCause("Could not resolve all dependencies for configuration ':conf'.")
            failure.assertHasCause("Invalid format: 'foobar'")
        }
    
        def "substituted module version participates in conflict resolution"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  9. src/net/url/url_test.go

    	},
    	// "Windows" paths are no exception to the rule.
    	// See golang.org/issue/6027, especially comment #9.
    	{
    		"file:///C:/FooBar/Baz.txt",
    		&URL{
    			Scheme: "file",
    			Host:   "",
    			Path:   "/C:/FooBar/Baz.txt",
    		},
    		"file:///C:/FooBar/Baz.txt",
    	},
    	// case-insensitive scheme
    	{
    		"MaIlTo:******@****.***",
    		&URL{
    			Scheme: "mailto",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. pkg/apis/networking/validation/validation_test.go

    			},
    			expectErrsOnFields: []string{
    				"spec.rules[0].http.paths",
    			},
    		},
    		"invalid host (foobar:80)": {
    			tweakIngress: func(ing *networking.Ingress) {
    				ing.Spec.Rules[0].Host = "foobar:80"
    			},
    			expectErrsOnFields: []string{
    				"spec.rules[0].host",
    			},
    		},
    		"invalid host (127.0.0.1)": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
Back to top