Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 666 for BAZ (0.04 sec)

  1. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

            then: 1 * redirector.startRedirecting()
            0 * _
        }
    
        def "starts capturing only on first test"() {
            def test = new DefaultTestDescriptor("2", "Bar", "Baz")
            def testEvent = new TestStartEvent(2, "1")
    
            processor.started(new DefaultTestSuiteDescriptor("1", "Foo"), new TestStartEvent(1))
    
            when: processor.started(test, testEvent)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_init_test.go

    			name:             "user specifies a value for Audit-ID in the request header",
    			auditIDSpecified: "foo-bar-baz",
    			auditIDExpected:  "foo-bar-baz",
    		},
    		{
    			name: "user does not specify a value for Audit-ID in the request header",
    			newAuditIDFunc: func() string {
    				return "foo-bar-baz"
    			},
    			auditIDExpected: "foo-bar-baz",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:35 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

        def "strings are interned"() {
            builder.library("foo", "bar", "baz").version {
                it.require "1.0"
            }
            builder.library("baz", "foo", "bar").version {
                it.prefer "1.0"
            }
            when:
            def model = builder.build()
    
            then:
            def bazKey = model.libraryAliases.find { it == 'baz' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. src/net/http/header_test.go

    	{"bar, foo", "foo", true},
    	{"bar,foo, baz", "foo", true},
    	{"bar, foo,baz", "foo", true},
    	{"bar,foo, baz", "foo", true},
    	{"bar, foo, baz", "foo", true},
    	{"FOO", "foo", true},
    	{"FOO ", "foo", true},
    	{" FOO", "foo", true},
    	{" FOO ", "foo", true},
    	{"FOO,BAR", "foo", true},
    	{"BAR,FOO", "foo", true},
    	{"BAR, FOO", "foo", true},
    	{"BAR,FOO, baz", "foo", true},
    	{"BAR, FOO,BAZ", "foo", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    				builder.AppendRuleV4(iptableslog.UndefinedCommand, "chain", "table", "-f", "fu", "-b", "bar")
    				builder.AppendRuleV4(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "baz")
    			},
    			true,
    		},
    		{
    			"append-multi-v6",
    			false,
    			true,
    			func(builder *IptablesRuleBuilder) {
    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "bar")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/config/validation/virtualservice_test.go

    				Weight:      75,
    			}},
    		}, valid: true},
    		{name: "total weight > 100", route: &networking.HTTPRoute{
    			Route: []*networking.HTTPRouteDestination{{
    				Destination: &networking.Destination{Host: "foo.baz.south"},
    				Weight:      55,
    			}, {
    				Destination: &networking.Destination{Host: "foo.baz.east"},
    				Weight:      50,
    			}},
    		}, valid: true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. pkg/kubelet/envvars/envvars_test.go

    			Spec: v1.ServiceSpec{
    				Selector:  map[string]string{"bar": "baz"},
    				ClusterIP: "1.2.3.4",
    				Ports: []v1.ServicePort{
    					{Port: 8080, Protocol: "TCP"},
    				},
    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{Name: "abc-123"},
    			Spec: v1.ServiceSpec{
    				Selector:  map[string]string{"bar": "baz"},
    				ClusterIP: "5.6.7.8",
    				Ports: []v1.ServicePort{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 27 05:56:27 UTC 2018
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesMissingMetadataIntegrationTest.groovy

                }
            """
    
            expect:
            succeeds "verify"
        }
    
        def "rule can define dependencies for component without metadata in Kotlin DSL"() {
            given:
            mavenRepo.module("org", "foo").withNoPom().publish()
            mavenRepo.module("org", "bar").publish()
            mavenRepo.module("org", "baz").publish()
    
            buildKotlinFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

            ['c', 'd', 'e', 'f', 'g'].each {
                file("$it/build.gradle") << """
                apply plugin: 'java-library'
            """
                file("$it/src/main/java/com/baz/Baz${it}.java") << """
                package com.baz;
                public class Baz${it} {}
            """
            }
    
            file("b/src/myFeature/java/com/foo/Foo.java") << """
                package com.foo;
                public class Foo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/heap/heap_test.go

    	h.Add(mkHeapObj("foo", 10))
    	h.Add(mkHeapObj("bar", 1))
    	h.Add(mkHeapObj("bal", 31))
    	h.Add(mkHeapObj("baz", 11))
    
    	// Update an item to a value that should push it to the head.
    	h.Update(mkHeapObj("baz", 0))
    	if h.data.queue[0] != "baz" || h.data.items["baz"].index != 0 {
    		t.Fatalf("expected baz to be at the head")
    	}
    	item, err := h.Pop()
    	if e, a := 0, item.(testHeapObject).val; err != nil || a != e {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top