Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 186 for testJar (0.26 sec)

  1. istioctl/pkg/workload/workload_test.go

    			"ingressIP":  "fd00:10:96::2",
    		},
    	}
    	for _, dir := range files {
    		if !dir.IsDir() {
    			continue
    		}
    		testdir := path.Join("testdata/vmconfig", dir.Name())
    		t.Cleanup(func() {
    			for k := range generated {
    				os.Remove(path.Join(testdir, k))
    			}
    		})
    		t.Run(dir.Name(), func(t *testing.T) {
    			createClientFunc := func(client kube.CLIClient) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/UserInitScriptExecuterFixture.groovy

    abstract class UserInitScriptExecuterFixture implements MethodRule {
    
        GradleExecuter executer
        TestDirectoryProvider testDir
    
        UserInitScriptExecuterFixture(GradleExecuter executer, TestDirectoryProvider testDir) {
            this.executer = executer
            this.testDir = testDir
        }
    
        String initScriptContent() {
        }
    
        void afterBuild() {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProjectLifecycleFixture.groovy

        private TestFile fixtureData
    
        ProjectLifecycleFixture(GradleExecuter executer, TestDirectoryProvider testDir) {
            super(executer, testDir)
        }
    
        List<String> configuredProjects
    
        String initScriptContent() {
            fixtureData = testDir.testDirectory.file("lifecycle-fixture-data.txt")
            """File outputFile = file("${fixtureData.toURI()}")
               outputFile.text = ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		defer func() {
    			os.Remove("libgo4.a")
    			os.Remove("libgo4.h")
    			os.Remove("testar")
    			os.Remove("testar.ran")
    			os.RemoveAll(filepath.Join(GOPATH, "pkg"))
    		}()
    	}
    
    	os.Remove("testar")
    	dir, err := os.Getwd()
    	if err != nil {
    		t.Fatal(err)
    	}
    	s := strings.Replace(testar, "PWD", dir, 1)
    	if err := os.WriteFile("testar", []byte(s), 0777); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. test/README.md

    It includes black box tests, regression tests, and error output tests.
    They are run as part of all.bash.
    
    To run just these tests, execute:
    
    	../bin/go test cmd/internal/testdir
    
    To run just tests from specified files in this directory, execute:
    
    	../bin/go test cmd/internal/testdir -run='Test/(file1.go|file2.go|...)'
    
    Standard library tests should be written as regular Go tests in the appropriate package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 17:18:08 UTC 2023
    - 731 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_var_init_order.txt

    func notOK() string {
    	return "not OK"
    }
    
    -- m_test.go --
    
    package main
    
    import (
    	"testing"
    )
    
    func TestFoo(t *testing.T) {
    	if foo == nil {
    		t.Fatal()
    	}
    }
    
    func TestBar(t *testing.T) {
    	if bar == nil {
    		t.Fatal()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 18:14:15 UTC 2022
    - 784 bytes
    - Viewed (0)
  7. src/crypto/x509/root_unix_test.go

    			name:    "dir",
    			fileEnv: "",
    			dirEnv:  testDir,
    			files:   nil,
    			dirs:    nil,
    			cns:     []string{testDirCN},
    		},
    		{
    			// File & directory environment overrides both default locations.
    			name:    "file+dir",
    			fileEnv: testFile,
    			dirEnv:  testDir,
    			files:   nil,
    			dirs:    nil,
    			cns:     []string{testFileCN, testDirCN},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/IoTestCase.java

          try {
            File testFile = new File(testFileUrl.toURI());
            testDir = testFile.getParentFile(); // the testdata directory
          } catch (Exception ignore) {
            // probably URISyntaxException or IllegalArgumentException
            // fall back to copying URLs to files in the testDir == null block below
          }
        }
    
        if (testDir == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_test_err.txt

    go list -e -test -deps -f '{{.ImportPath}} {{.Error | printf "%q"}}' nameerr
    stdout 'pkgdep <nil>'
    stdout 'testdep_a <nil>'
    stdout 'testdep_b <nil>'
    stdout 'nameerr\.test "[^"]*wrong signature for TestBad'
    ! stderr 'wrong signature for TestBad'
    
    # go list prints a useful error for generic test functions
    ! go list -test -deps genericerr
    stderr 'wrong signature for TestGeneric, test functions cannot have type parameters'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 23:08:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            platformModule.parsedModuleMetadata.variant('apiElements') {
                dependency("org.test:foo:1.0").exists()
                constraint("org.test:bar:1.1").exists()
                noMoreDependencies()
            }
    
            libraryModule.parsedPom.packaging == null
            libraryModule.parsedPom.scopes.compile.assertDependsOn("org.test:bar:")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top