Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 4,327 for Example (0.15 sec)

  1. cmd/endpoint_test.go

    		{[]string{"http://localhost:9000/d1", "http://localhost:9000/d2", "http://example.org:9000/d3", "http://example.com:9000/d4"}, []string{"example.com:9000", "example.org:9000", "localhost:9000"}, "localhost:9000"},
    		{[]string{"http://localhost:9000/d1", "http://localhost:10000/d2", "http://example.org:9000/d3", "http://example.com:9000/d4"}, []string{"example.com:9000", "example.org:9000", "localhost:10000", "localhost:9000"}, "localhost:9000"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:53:03 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	basePod := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec:       example.PodSpec{NodeName: ""},
    	}
    	basePodAssigned := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec:       example.PodSpec{NodeName: "bar"},
    	}
    
    	selectedPod := func(pod *example.Pod) *example.Pod {
    		result := pod.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/copy/kotlin/build.gradle.kts

    }
    // end::copy-multiple-files-example[]
    
    // tag::copy-multiple-files-with-flat-filter-example[]
    tasks.register<Copy>("copyPdfReportsForArchiving") {
        from(layout.buildDirectory.dir("reports"))
        include("*.pdf")
        into(layout.buildDirectory.dir("toArchive"))
    }
    // end::copy-multiple-files-with-flat-filter-example[]
    
    // tag::copy-multiple-files-with-deep-filter-example[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_list.txt

    go install m/example
    ! stale m/example
    
    # Run a second staleness check with "-cover" as a build flag. The
    # installed target should indeed be stale, since we didn't build it
    # with -cover.
    stale -cover m/example
    
    # Collect build ID from for m/example built with -cover.
    go list -cover -export -f '{{.BuildID}}' m/example
    cp stdout $WORK/listbuildid.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 22:47:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_test.go

    			expectedVirtualHosts: map[string][]string{
    				"example.org:80": {
    					"example.org",
    				},
    			},
    			expectedVirtualHostsHostPortStrip: map[string][]string{
    				"example.org:80": {"example.org"},
    			},
    			// We will setup a VHost which just redirects; no routes
    			expectedHTTPRoutes:    map[string]int{"example.org:80": 0},
    			redirect:              true,
    			expectStatefulSession: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

    }
    // end::copy-multiple-files-example[]
    
    // tag::copy-multiple-files-with-flat-filter-example[]
    tasks.register('copyPdfReportsForArchiving', Copy) {
        from layout.buildDirectory.dir("reports")
        include "*.pdf"
        into layout.buildDirectory.dir("toArchive")
    }
    // end::copy-multiple-files-with-flat-filter-example[]
    
    // tag::copy-multiple-files-with-deep-filter-example[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImplTest.java

        }
    
        public void test_match_both() {
            urlFilter.addInclude("http://example.com/.*");
            urlFilter.addExclude("http://example.com/a.*");
    
            final String sessionId = "id1";
            urlFilter.init(sessionId);
    
            assertTrue(urlFilter.match("http://example.com/"));
            assertFalse(urlFilter.match("http://example.com/a"));
            assertFalse(urlFilter.match("http://test.com/"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/TestLauncherCrossVersionSpec.groovy

                launcher.withTaskAndTestClasses(':secondTest',["example.MyTest2"])
            }
            then:
            assertTaskNotExecuted(":test")
            assertTaskExecuted(":secondTest")
            assertTestExecuted(className: "example.MyTest2", methodName: "bar", task: ":secondTest")
            assertTestNotExecuted(className: "example.MyTest")
        }
    
        def "can target specific test task and methods"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/misc/groovy/build.gradle

        }
    }
    // end::move-example[]
    
    // tag::delete-example[]
    tasks.register('myClean', Delete) {
        delete buildDir
    }
    // end::delete-example[]
    
    // tag::delete-with-filter-example[]
    tasks.register('cleanTempFiles', Delete) {
        delete fileTree("src").matching {
            include "**/*.tmp"
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 932 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/structuring-software-projects/user-feature/table/src/test/java/com/example/myproduct/user/table/TableBuilderTest.java

    package com.example.myproduct.user.table;
    
    import com.example.myproduct.model.MyProductRelease;
    import org.junit.jupiter.api.Test;
    
    import java.util.Arrays;
    import java.util.List;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    public class TableBuilderTest {
        @Test
        public void testTableBuilding() {
            List<MyProductRelease> testData = Arrays.asList(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 768 bytes
    - Viewed (0)
Back to top