Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for test_ir (0.18 sec)

  1. docs/ftp/README.md

    ftp> ls runner/
    229 Entering Extended Passive Mode (|||39155|)
    150 Opening ASCII mode data connection for file list
    drwxrwxrwx 1 nobody nobody            0 Jan  1 00:00 chunkdocs/
    drwxrwxrwx 1 nobody nobody            0 Jan  1 00:00 testdir/
    ...
    ```
    
    Following example shows how to list an object and download it locally via `ftp` client:
    
    ```
    ftp> ls runner/chunkdocs/metadata
    229 Entering Extended Passive Mode (|||44269|)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/go/types/check_test.go

    		path := filepath.Join(dir, fi.Name())
    
    		// If fi is a directory, its files make up a single package.
    		if fi.IsDir() {
    			testDir(t, path, manual)
    		} else {
    			t.Run(filepath.Base(path), func(t *testing.T) {
    				testPkg(t, []string{path}, manual)
    			})
    		}
    	}
    }
    
    func testDir(t *testing.T, dir string, manual bool) {
    	testenv.MustHaveGoBuild(t)
    
    	fis, err := os.ReadDir(dir)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check_test.go

    		// If fi is a directory, its files make up a single package.
    		if fi.IsDir() {
    			testDir(t, path, colDelta, manual)
    		} else {
    			t.Run(filepath.Base(path), func(t *testing.T) {
    				testPkg(t, []string{path}, colDelta, manual)
    			})
    		}
    	}
    }
    
    func testDir(t *testing.T, dir string, colDelta uint, manual bool) {
    	fis, err := os.ReadDir(dir)
    	if err != nil {
    		t.Error(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/build.gradle.kts

        classpath.from(configurations.integTestDistributionRuntimeClasspath)
        packageName = "org.gradle.integtests.fixtures"
        destDir = layout.buildDirectory.dir("generated/sources/language-annotations/groovy/main")
    }
    
    sourceSets.main {
        groovy.srcDir(generateLanguageAnnotations.flatMap { it.destDir })
        output.dir(prepareVersionsInfo.map { it.destFile.get().asFile.parentFile })
        output.dir(copyTestedVersionsInfo)
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. cluster/log-dump/log-dump.sh

            sleep 10
          fi
        done
    
        if [[ -f "${temp_local_path}" ]]; then
          unzip "${temp_local_path}" -d "${dest_dir}" > /dev/null
          rm -f "${temp_local_path}"
        fi
    }
    
    # Saves log files from SSH
    function save-windows-logs-via-ssh() {
        local node="${1}"
        local dest_dir="${2}"
    
        export-windows-docker-event-log "${node}"
        export-windows-docker-images-list "${node}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

            "failedTests" to true,
            "projectDependencies" to true,
            "manyPlugins" to true,
            "manyScripts" to true
        )
        daemonMemory = "4096m"
        maxWorkers = 4
        doLast {
            File(destDir, "build.gradle").appendText("""
    // gradle-profiler doesn't support expectFailure
    subprojects {
        afterEvaluate {
            test.ignoreFailures = true
        }
    }
    """)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultTypeProvider.java

                    new DefaultType(Type.JAVA_SOURCE, Language.JAVA_FAMILY, "jar", "sources", false),
                    new DefaultType(
                            Type.TEST_JAR,
                            Language.JAVA_FAMILY,
                            "jar",
                            "tests",
                            false,
                            JavaPathType.CLASSES,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. docs/debugging/xl-meta/main.go

    Multiple files can be added. Files ending in '.zip' will be searched
    for 'xl.meta' files. Wildcards are accepted: 'testdir/*.txt' will compress
    all files in testdir ending with '.txt', directories can be wildcards
    as well. 'testdir/*/*.txt' will match 'testdir/subdir/b.txt', double stars
    means full recursive. 'testdir/**/xl.meta' will search for all xl.meta
    recursively.
    
    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}
    `
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/flag/flag_test.go

    	visitor := func(f *Flag) {
    		if len(f.Name) > 5 && f.Name[0:5] == "test_" {
    			g, ok := f.Value.(Getter)
    			if !ok {
    				t.Errorf("Visit: value does not satisfy Getter: %T", f.Value)
    				return
    			}
    			switch f.Name {
    			case "test_bool":
    				ok = g.Get() == true
    			case "test_int":
    				ok = g.Get() == int(1)
    			case "test_int64":
    				ok = g.Get() == int64(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	testID := h.Sum()
    	if c.id1 == (cache.ActionID{}) {
    		c.id1 = testID
    	} else {
    		c.id2 = testID
    	}
    	if cache.DebugTest {
    		fmt.Fprintf(os.Stderr, "testcache: %s: test ID %x => %x\n", a.Package.ImportPath, id, testID)
    	}
    
    	// Load list of referenced environment variables and files
    	// from last run of testID, and compute hash of that content.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top