Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for epstest (0.24 sec)

  1. pilot/pkg/xds/eds_test.go

    	"istio.io/istio/pilot/pkg/serviceregistry/memory"
    	"istio.io/istio/pilot/pkg/xds"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	xdsfake "istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/adsc"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. src/go/build/deps_test.go

    	< net/rpc
    	< net/rpc/jsonrpc;
    
    	# System Information
    	bufio, bytes, internal/cpu, io, os, strings, sync
    	< internal/sysinfo;
    
    	# Test-only
    	log
    	< testing/iotest
    	< testing/fstest;
    
    	FMT, flag, math/rand
    	< testing/quick;
    
    	FMT, DEBUG, flag, runtime/trace, internal/sysinfo, math/rand
    	< testing;
    
    	log/slog, testing
    	< testing/slogtest;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/reuse_git.txt

    stdout '"Version": "v0.0.0-20170922010558-fc3a09f3dc5c"'
    stdout '"VCS": "git"'
    stdout '"URL": ".*/git/hello"'
    stdout '"Hash": "fc3a09f3dc5cfe0d7a743ea18f1f5226e68b3777"'
    go clean -modcache
    
    # go mod download vcstest/hello should invoke git, print origin info
    go mod download -x -json vcs-test.golang.org/git/hello.git@latest
    stderr 'git( .*)* fetch'
    cp stdout hello.json
    stdout '"Version": "v0.0.0-20170922010558-fc3a09f3dc5c"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyApplicationInitIntegrationTest.groovy

            subprojectDir.file("src/test/groovy").assertHasDescendants("my/app/AppTest.groovy")
    
            and:
            commonJvmFilesGenerated(scriptDsl)
    
            when:
            run("build")
    
            then:
            assertTestPassed("my.app.AppTest", "application has a greeting")
    
            when:
            run("run")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/xds_test.go

    			},
    		})
    		proxy := s.SetupProxy(baseProxy())
    
    		endpoints := xdstest.ExtractLoadAssignments(s.Endpoints(proxy))
    		if !slices.EqualUnordered(endpoints["outbound|80||app.com"], []string{"1.1.1.1:80"}) {
    			t.Fatalf("expected 1.1.1.1, got %v", endpoints["outbound|80||app.com"])
    		}
    
    		assertListEqual(t, xdstest.ExtractListenerNames(s.Listeners(proxy)), []string{
    			"0.0.0.0_80",
    			"5.5.5.5_443",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/runtime/runtime_test.go

    		{
    			name: "invalid: new runtime service fails",
    			prepare: func(mock *fakeImpl) {
    				mock.NewRemoteRuntimeServiceReturns(nil, errTest)
    			},
    			shouldError: true,
    		},
    		{
    			name: "invalid: new image service fails",
    			prepare: func(mock *fakeImpl) {
    				mock.NewRemoteImageServiceReturns(nil, errTest)
    			},
    			shouldError: true,
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

        public static final String SAMPLE_APP_CLASS = "org/example/App.java"
        public static final String SAMPLE_APP_TEST_CLASS = "org/example/AppTest.java"
        public static final String SAMPLE_APP_SPOCK_TEST_CLASS = "org/example/AppTest.groovy"
    
        @Override
        String subprojectName() { 'app' }
    
        def "defaults to Kotlin build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinApplicationInitIntegrationTest.groovy

            subprojectDir.file("src/test/kotlin").assertHasDescendants("my/app/AppTest.kt")
    
            and:
            commonJvmFilesGenerated(scriptDsl)
    
            when:
            run("build")
    
            then:
            assertTestPassed("my.app.AppTest", "appHasAGreeting")
    
            when:
            run("run")
    
            then:
            outputContains("Hello World!")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            }
            run "compileTestGroovy"
    
            then:
            outputs.recompiledClasses("AppTest", "AppTest\$_some_test_closure1", "AppTest\$_some_test_closure1\$_closure2", "BaseTest")
            compileTransactionDir.exists()
            stashDirClasses() == ["AppTest.class", "AppTest\$_some_test_closure1.class", "AppTest\$_some_test_closure1\$_closure2.class", "BaseTest.class"] as Set<String>
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. cmd/batch-expire_test.go

            greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
          purge:
              # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
              # retainVersions: 5 # keep the latest 5 versions of the object.
      
        - type: deleted # objects with delete marker as their latest version
          name: NAME # match object names that satisfy the wildcard expression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top