Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for bar7 (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			indexFields:        []string{"spec.nodeName"},
    			watchTests: []*testWatchStruct{
    				{baseNamespacedPod("t8-foo1", "t8-ns1"), false, ""},
    				{baseNamespacedPodAssigned("t8-foo1", "t8-ns1", "t8-bar1"), false, ""},
    				{baseNamespacedPodAssigned("t8-foo1", "t8-ns2", "t8-bar2"), false, ""},
    				{baseNamespacedPodAssigned("t8-foo1", "t8-ns1", "t8-bar2"), true, watch.Added},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    #     srcs = glob(
    #         [
    #             "*.bara.sky",
    #             "*.dic",
    #             "*.ftrcp",
    #         ],
    #         exclude = [
    #             "copy.bara.sky",
    #         ],
    #     ),
    #     visibility = ["//visibility:public"],
    # )
    #
    # filegroup(
    #     name = "copybara_config",
    #     srcs = ["copy.bara.sky"],
    #     data = [
    #         ":copybara_library",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	objMeta.SetNamespace(genericapirequest.NamespaceValue(ctx1))
    	_, err := t.storage.(rest.Creater).Create(ctx1, obj, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	ctx2 := genericapirequest.WithNamespace(genericapirequest.NewContext(), "bar4")
    	objMeta.SetNamespace(genericapirequest.NamespaceValue(ctx2))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                            assert files.collect { it.name } == ['b-bar.jar']
                        }
                    }
                }
                project(':b') {
                    configurations {
                        foo
                        bar
                        create 'default'
                    }
                    task barJar(type: Jar) {
                       archiveBaseName = 'b-bar'
                       destinationDirectory = buildDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            def projectB = project(project, "b")
    
            def fooA = task("foo", project: projectA)
            def barA = task("bar", project: projectA)
    
            def fooB = task("foo", project: projectB)
            def barB = task("bar", project: projectB)
    
            when:
            addToGraphAndPopulate(fooA, barA, fooB, barB)
            def taskNode1 = selectNextTaskNode()
            def taskNode2 = selectNextTaskNode()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "duplicate expression",
    			in: []api.ClaimValidationRule{
    				{Expression: "claims.foo == 'bar'"},
    				{Expression: "claims.foo == 'bar'"},
    			},
    			structuredAuthnFeatureEnabled: true,
    			want:                          `issuer.claimValidationRules[1].expression: Duplicate value: "claims.foo == 'bar'"`,
    		},
    		{
    			name: "expression set when structured authn feature is disabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	}
    	if tr.req.Close {
    		t.Error("got Close true, want false")
    	}
    	// Depending on map iteration, body can be either of these.
    	expectedBody := "foo=bar&foo=bar2&bar=baz"
    	expectedBody1 := "bar=baz&foo=bar&foo=bar2"
    	if g, e := tr.req.ContentLength, int64(len(expectedBody)); g != e {
    		t.Errorf("got ContentLength %d, want %d", g, e)
    	}
    	bodyb, err := io.ReadAll(tr.req.Body)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers_test.go

    				"uid-0": {
    					fullname: "foo_",
    				},
    				"uid-1": {
    					fullname: "bar_",
    				},
    			},
    			startedStaticPodsByFullname: map[string]types.UID{
    				"bar_": types.UID("uid-1"),
    			},
    			expectedStartedStaticPodsByFullname: map[string]types.UID{
    				"foo_": types.UID("uid-0"),
    				"bar_": types.UID("uid-1"),
    			},
    			allowed:     true,
    			allowedEver: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  9. src/encoding/json/decode_test.go

    	Int64   int64
    	Uint    uint
    	Uint8   uint8
    	Uint16  uint16
    	Uint32  uint32
    	Uint64  uint64
    	Uintptr uintptr
    	Float32 float32
    	Float64 float64
    
    	Foo  string `json:"bar"`
    	Foo2 string `json:"bar2,dummyopt"`
    
    	IntStr     int64   `json:",string"`
    	UintptrStr uintptr `json:",string"`
    
    	PBool    *bool
    	PInt     *int
    	PInt8    *int8
    	PInt16   *int16
    	PInt32   *int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. tests/test_generate_unique_id_function.py

    from fastapi.testclient import TestClient
    from pydantic import BaseModel
    
    
    def custom_generate_unique_id(route: APIRoute):
        return f"foo_{route.name}"
    
    
    def custom_generate_unique_id2(route: APIRoute):
        return f"bar_{route.name}"
    
    
    def custom_generate_unique_id3(route: APIRoute):
        return f"baz_{route.name}"
    
    
    class Item(BaseModel):
        name: str
        price: float
    
    
    class Message(BaseModel):
        title: str
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
Back to top