Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for BAR (0.05 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    retainKeysMap:
      value: foo
    `),
    			Modified: []byte(`
    retainKeysMap:
      other: bar
    `),
    			TwoWay: []byte(`
    retainKeysMap:
      other: bar
    `),
    			ThreeWay: []byte(`
    retainKeysMap:
      $retainKeys:
        - other
      other: bar
    `),
    			Result: []byte(`
    retainKeysMap:
      other: bar
    `),
    		},
    	},
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    		{name: "with no destination", in: &networking.VirtualService{
    			Hosts: []string{"*.foo.bar", "*.bar"},
    			Http: []*networking.HTTPRoute{{
    				Route: []*networking.HTTPRouteDestination{{}},
    			}},
    		}, valid: false},
    		{name: "destination with out hosts", in: &networking.VirtualService{
    			Hosts: []string{"*.foo.bar", "*.bar"},
    			Http: []*networking.HTTPRoute{{
    				Route: []*networking.HTTPRouteDestination{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				st.MakeNode().Name("node-c").Label("node", "node-c").Label("bar", "").Obj(),
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Name("p-a").Node("node-a").Label("bar", "").Obj(),
    				st.MakePod().Name("p-b").Node("node-b").Label("bar", "").Obj(),
    				st.MakePod().Name("p-c").Node("node-b").Label("bar", "").Obj(),
    				st.MakePod().Name("p-d").Node("node-c").Obj(),
    			},
    			want: &preFilterState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"exp": %d,
    				"uid": "1234",
    				"foo": "bar",
    				"bar": [
    					"baz",
    					"qux"
    				]
    			}`, valid.Unix()),
    			want: &user.DefaultInfo{
    				Name:   "jane",
    				Groups: []string{"team1", "team2"},
    				UID:    "1234",
    				Extra: map[string][]string{
    					"example.org/foo": {"bar"},
    					"example.org/bar": {"baz", "qux"},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		validYAMLDataPut = []byte(`apiVersion: test.group/version
    kind: Simple
    metadata:
      name: id
      creationTimestamp: null
    other: bar`)
    
    		validMergePatch = []byte(`{"labels":{"foo":"bar"}, "other": "bar"}`)
    		validJSONPatch  = []byte(`
    [
    	{"op": "add", "path": "/other", "value": "bar"}
    	]
    	`)
    		validSMP = []byte(`{"other": "bar"}`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			// but it should be ratcheted anyway because it is the descendent
    			// or an unchanged correlatable node
    			oldObj: mustUnstructured(`
    				- bar: bar
    			`),
    			newObj: mustUnstructured(`
    				- bar: bar
    				- bar: baz
    			`),
    			errors: []string{
    				`root[0].bar: Invalid value: "string": gotta be baz`,
    			},
    		},
    		{
    			name: "transition rules never ratchet for correlatable schemas",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            mavenRepo.module("org", "foo", "1.1").publish()
            mavenRepo.module("org", "foo", "1.2").publish()
            mavenRepo.module("org", "bar", "1.0").publish()
            mavenRepo.module("org", "bar", "1.1").publish()
            mavenRepo.module("org", "bar", "1.2").publish()
    
            buildFile << """
                apply plugin: 'java-library'
    
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        SettableFuture<Foo> f1 = SettableFuture.create();
        final SettableFuture<Bar> secondary = SettableFuture.create();
        AsyncFunction<Foo, Bar> function =
            new AsyncFunction<Foo, Bar>() {
              @Override
              public ListenableFuture<Bar> apply(Foo unused) {
                return secondary;
              }
            };
        ListenableFuture<Bar> f2 = transformAsync(f1, function, directExecutor());
        f1.cancel(true);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        SettableFuture<Foo> f1 = SettableFuture.create();
        final SettableFuture<Bar> secondary = SettableFuture.create();
        AsyncFunction<Foo, Bar> function =
            new AsyncFunction<Foo, Bar>() {
              @Override
              public ListenableFuture<Bar> apply(Foo unused) {
                return secondary;
              }
            };
        ListenableFuture<Bar> f2 = transformAsync(f1, function, directExecutor());
        f1.cancel(true);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. cmd/server_test.go

    		{getListObjectsV1URL(s.endPoint, bucketName, "", "1000", "url"), []string{"<Key>foo+bar+1</Key>", "<Key>foo+bar+2</Key>", "<Key>foo+%01+bar</Key>"}},
    		{
    			getListObjectsV2URL(s.endPoint, bucketName, "", "1000", "", "", ""),
    			[]string{
    				"<Key>foo bar 1</Key>",
    				"<Key>foo bar 2</Key>",
    				"<Key>foo &#x1; bar</Key>",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
Back to top