Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 115 for BAR (0.09 sec)

  1. src/strings/strings_test.go

    func TestIndexRune(t *testing.T) {
    	tests := []struct {
    		in   string
    		rune rune
    		want int
    	}{
    		{"", 'a', -1},
    		{"", '☺', -1},
    		{"foo", '☹', -1},
    		{"foo", 'o', 1},
    		{"foo☺bar", '☺', 3},
    		{"foo☺☻☹bar", '☹', 9},
    		{"a A x", 'A', 2},
    		{"some_text=some_value", '=', 9},
    		{"☺a", 'a', 3},
    		{"a☻☺b", '☺', 4},
    
    		// RuneError should match any invalid UTF-8 byte sequence.
    		{"�", '�', 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// TensorFlow uses in case the plugin doesn't supply its own version. An
    /// operation `foo` might have a default implementation which uses `bar` and
    /// `foobar`. If the plugin supplies `bar` and `foobar`, TensorFlow can use the
    /// default implementation of `foo`.
    ///
    /// During plugin loading, plugins will call the registration function provided
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/virtualservice_test.go

    						constants.InternalParentNames:    "HTTPRoute/foo.ns,HTTPRoute/bar.ns",
    					},
    				},
    			},
    			want: []ConfigKey{
    				{
    					Kind:      kind.HTTPRoute,
    					Namespace: "ns",
    					Name:      "foo",
    				},
    				{
    					Kind:      kind.HTTPRoute,
    					Namespace: "ns",
    					Name:      "bar",
    				},
    			},
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    		},
    	}
    
    	gatewayProxy := &model.Proxy{
    		Type:            model.Router,
    		ConfigNamespace: "not-default",
    		Metadata: &model.NodeMetadata{
    			IstioVersion: "1.2.2",
    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    func TestIndexRune(t *testing.T) {
    	tests := []struct {
    		in   string
    		rune rune
    		want int
    	}{
    		{"", 'a', -1},
    		{"", '☺', -1},
    		{"foo", '☹', -1},
    		{"foo", 'o', 1},
    		{"foo☺bar", '☺', 3},
    		{"foo☺☻☹bar", '☹', 9},
    		{"a A x", 'A', 2},
    		{"some_text=some_value", '=', 9},
    		{"☺a", 'a', 3},
    		{"a☻☺b", '☺', 4},
    
    		// RuneError should match any invalid UTF-8 byte sequence.
    		{"�", '�', 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. cmd/object-api-listobjects_test.go

    		{testBuckets[5], "foo/201910/1112", "content", nil},
    		{testBuckets[5], "foo/201910/2112", "content", nil},
    		{testBuckets[5], "foo/201910_txt", "content", nil},
    		{testBuckets[5], "201910/foo/bar/xl.meta/1.txt", "content", nil},
    		{testBuckets[6], "aaa", "content", nil},
    		{testBuckets[6], "bbb_aaa", "content", nil},
    		{testBuckets[6], "bbb_aaa", "content", nil},
    		{testBuckets[6], "ccc", "content", nil},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			pod:                             &v1.Pod{},
    			oldObj:                          st.MakePod().Name("pod2").Label("k", "v").Node("fake").Obj(),
    			newObj:                          st.MakePod().Name("pod2").Label("foo", "bar").Node("fake").Obj(),
    			enableInPlacePodVerticalScaling: true,
    			expectedHint:                    framework.QueueSkip,
    		},
    		"skip-queue-on-other-pod-unrelated-resource-changes": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

        // Resolve dependencies
        doLast {
            configurations["implementation"].dependencies.withType<FileCollectionDependency>() {
                assert(resolve().map { it.name } == listOf("bar.txt"))
                assert(resolve(true).map { it.name } == listOf("bar.txt"))
            }
            configurations["implementation"].dependencies.withType<ProjectDependency>() {
                // These methods do not even work properly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/manual.css

    	font-size: inherit;
    }
    
    /* Custom SVG logos coloring */
    path {
    	fill="#02303A";
    }
    
    .dark-mode path {
    	fill: white;
    }
    
    /* Custom scroll bar */
    /* Works on Firefox */
    .docs-navigation {
    	scrollbar-width: auto;
    	scrollbar-color: #686868 #e7e7e9;
    }
    
    /* Works on Chrome, Edge, and Safari */
    .docs-navigation::-webkit-scrollbar {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			config: "testdata/valid-configs/kms/multiple-providers.yaml",
    			want: []healthChecker{
    				&kmsPluginProbe{
    					name: "foo",
    					ttl:  3 * time.Second,
    				},
    				&kmsPluginProbe{
    					name: "bar",
    					ttl:  3 * time.Second,
    				},
    			},
    			kmsv1: true,
    		},
    		{
    			desc:   "No KMS Providers",
    			config: "testdata/valid-configs/aes/aes-gcm.yaml",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top