Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for BAR (0.03 sec)

  1. 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)
  2. pkg/apis/networking/validation/validation_test.go

    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo", "bar", utilpointer.String("Cluster"), nil)),
    			),
    			expectedErrs: field.ErrorList{},
    		},
    		"valid name, valid controller, invalid scope": {
    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo", "bar", nil, utilpointer.String("foo_ns"))),
    			),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                node.addLinkInstance("parent.foo", "ignore me")
                node.addLinkInstance("parent.bar", new Bean(value: "bar"))
                node.applyToLink(ModelActionRole.Mutate) { it.path("parent.bar").node { MutableModelNode bar ->
                    bar.addLinkInstance("parent.bar.child1", new Bean(value: "baz"))
                    bar.addLinkInstance("parent.bar.child2", "ignore me too")
                }}
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  4. src/net/url/url_test.go

    	{"http://foo.com/bar", ".", "http://foo.com/"},
    	{"http://foo.com/bar/", ".", "http://foo.com/bar/"},
    
    	// ... going down
    	{"http://foo.com", "bar", "http://foo.com/bar"},
    	{"http://foo.com/", "bar", "http://foo.com/bar"},
    	{"http://foo.com/bar/baz", "quux", "http://foo.com/bar/quux"},
    
    	// ... going up
    	{"http://foo.com/bar/baz", "../quux", "http://foo.com/quux"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    	services6 = []*Service{
    		{
    			Hostname: "bar",
    			Ports:    twoPorts,
    			Attributes: ServiceAttributes{
    				Name:      "bar",
    				Namespace: "foo",
    			},
    		},
    	}
    
    	services7 = []*Service{
    		{
    			Hostname: "bar",
    			Ports:    twoPorts,
    			Attributes: ServiceAttributes{
    				Name:      "bar",
    				Namespace: "foo",
    			},
    		},
    		{
    			Hostname: "barprime",
    			Ports:    port8000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K 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. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			pod: st.MakePod().Namespace(defaultNamespace).Labels(map[string]string{"foo": "bar", "service": "securityscan"}).
    				PodAffinityIn("foo", "zone", []string{"bar"}, st.PodAffinityWithRequiredReq).
    				PodAffinityIn("service", "zone", []string{"securityscan"}, st.PodAffinityWithRequiredReq).Obj(),
    			pods: []*v1.Pod{
    				st.MakePod().Name("p1").Node("nodeA").Labels(map[string]string{"foo": "bar"}).Obj(),
    			},
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        Iterator<String> iterator = Collections.singletonList("foo").iterator();
        assertEquals("foo", Iterators.getOnlyElement(iterator, "bar"));
      }
    
      public void testGetOnlyElement_withDefault_empty() {
        Iterator<String> iterator = Iterators.emptyIterator();
        assertEquals("bar", Iterators.getOnlyElement(iterator, "bar"));
      }
    
      public void testGetOnlyElement_withDefault_empty_null() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    		{
    			"urlStartRel",
    			`<a href='{{"/foo/bar?a=b&c=d"}}'>`,
    			`<a href='/foo/bar?a=b&amp;c=d'>`,
    		},
    		{
    			"urlStartAbsOk",
    			`<a href='{{"http://example.com/foo/bar?a=b&c=d"}}'>`,
    			`<a href='http://example.com/foo/bar?a=b&amp;c=d'>`,
    		},
    		{
    			"protocolRelativeURLStart",
    			`<a href='{{"//example.com:8000/foo/bar?a=b&c=d"}}'>`,
    			`<a href='//example.com:8000/foo/bar?a=b&amp;c=d'>`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/validation/validation_test.go

    				Name: "system-foo",
    			},
    			Spec: flowcontrol.FlowSchemaSpec{
    				MatchingPrecedence: 50,
    				PriorityLevelConfiguration: flowcontrol.PriorityLevelConfigurationReference{
    					Name: "system-bar",
    				},
    				Rules: []flowcontrol.PolicyRulesWithSubjects{{
    					Subjects: []flowcontrol.Subject{{
    						Kind: flowcontrol.SubjectKindUser,
    						User: &flowcontrol.UserSubject{Name: "noxu"},
    					}},
    				}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
Back to top