Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 550 for foo$ (1.64 sec)

  1. pkg/kubelet/config/config_test.go

    	// should register an add
    	podUpdate := CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "new"), CreateValidPod("foo2", "new"), CreateValidPod("foo3", "new"))
    	channel <- podUpdate
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "new"), CreateValidPod("foo2", "new"), CreateValidPod("foo3", "new")))
    
    	// should ignore ADDs that are identical
    	expectNoPodUpdate(t, ch)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway_test.go

    	gwHTTPWildcard := makeConfig("foo3", "not-default", "*", "name3", "http", 8, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    	gwTCPWildcard := makeConfig("foo4", "not-default-2", "*", "name4", "tcp", 8, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

                launcher.withJvmTestMethods("example.MyTest", "foo", "foo2")
                launcher.withJvmTestMethods("example2.MyOtherTest", "bar")
            }
            then:
    
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":test")
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":secondTest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        doLast {
                            assert files.collect { it.name } == ['b-foo.jar', 'c-foo.jar']
                        }
                    }
                }
                project(':b') {
                    configurations {
                        foo {
                           attributes { $debug } // partial match on `buildType`
                        }
                        bar {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security_test.go

    	{"-D", "@foo"},
    	{"-D", "-foo"},
    	{"-I", "@foo"},
    	{"-I", "-foo"},
    	{"-l", "@foo"},
    	{"-l", "-foo"},
    	{"-framework", "-Caffeine"},
    	{"-framework", "@Home"},
    	{"-Wl,-framework,-Caffeine"},
    	{"-Wl,-framework", "-Wl,@Home"},
    	{"-Wl,-framework", "@Home"},
    	{"-Wl,-framework,Chocolate,@Home"},
    	{"-Wl,--hash-style=foo"},
    	{"-x", "--c"},
    	{"-x", "@obj"},
    	{"-Wl,-rpath,@foo"},
    	{"-Wl,-R,foo,bar"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformReplacerTest.groovy

                manifest {}
    
                entry("Foo.class", ORIGINAL_CLASS)
            }
    
            def transformed = jar(testDir.file("transformed.jar")) {
                manifest {}
    
                entry("Foo.class", INSTRUMENTED_CLASS)
            }
    
            TransformedClassPath cp = classPath((original): transformed)
    
            expect:
            INSTRUMENTED_CLASS == loadTransformedClass(cp, "Foo", original)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "bar")
    				builder.InsertRuleV6(iptableslog.UndefinedCommand, "chain", "table", 2, "-f", "foo", "-b", "bar")
    				builder.InsertRuleV6(iptableslog.UndefinedCommand, "chain", "table", 1, "-f", "foo", "-b", "bar")
    				builder.AppendRuleV4(iptableslog.UndefinedCommand, constants.PREROUTING, constants.NAT, "-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)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            val instance = createFromPaths(listOf("foo*/*bar*/*baz/*.xml"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/bar/baz/.xml")))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo1/2bar3/4baz/abc.xml")))
        }
    
        @Test
        fun `recognizes double-asterisk wildcards across path segments`() {
            val instance = createFromPaths(listOf("foo/**/bar/**"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/mime/quotedprintable/reader_test.go

    		in, want string
    		err      any
    	}{
    		{in: "", want: ""},
    		{in: "foo bar", want: "foo bar"},
    		{in: "foo bar=3D", want: "foo bar="},
    		{in: "foo bar=3d", want: "foo bar="}, // lax.
    		{in: "foo bar=\n", want: "foo bar"},
    		{in: "foo bar\n", want: "foo bar\n"}, // somewhat lax.
    		{in: "foo bar=0", want: "foo bar=0"}, // lax
    		{in: "foo bar=0D=0A", want: "foo bar\r\n"},
    		{in: " A B        \r\n C ", want: " A B\r\n C"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/net/url/url_test.go

    	// ... current directory
    	{"http://foo.com", ".", "http://foo.com/"},
    	{"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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top