Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 813 for isStandard (0.13 sec)

  1. src/internal/goroot/gc.go

    			lastDirs = append(lastDirs, dir)
    		}
    	}
    	gd.dirs = append(gd.dirs, lastDirs...)
    }
    
    // isStandard reports whether path is a standard library for gccgo.
    func (gd *gccgoDirs) isStandard(path string) bool {
    	// Quick check: if the first path component has a '.', it's not
    	// in the standard library. This skips most GOPATH directories.
    	i := strings.Index(path, "/")
    	if i < 0 {
    		i = len(path)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/dist/imports.go

    func resolveVendor(imp, srcDir string) string {
    	var first string
    	if i := strings.Index(imp, "/"); i < 0 {
    		first = imp
    	} else {
    		first = imp[:i]
    	}
    	isStandard := !strings.Contains(first, ".")
    	if isStandard {
    		return imp
    	}
    
    	if strings.HasPrefix(srcDir, filepath.Join(goroot, "src", "cmd")) {
    		return path.Join("cmd", "vendor", imp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 21:45:30 UTC 2019
    - 6.3K bytes
    - Viewed (0)
  3. releasenotes/notes/standard-alpn.yaml

    John Howard <******@****.***> 1609359582 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 30 20:19:42 UTC 2020
    - 191 bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

                result.groupedOutput.task(':log').output == "Standard out 1\nStandard err 1\nStandard out 2\nStandard err 2"
            } else {
                result.groupedOutput.task(':log').output == "Standard out 1\nStandard out 2\n"
                result.assertHasErrorOutput("Standard err 1\nStandard err 2")
            }
        }
    
        def "grouped output is displayed for failed tasks"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.standard-tool-chains.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 99 bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/BaseExecSpec.java

        /**
         * Sets the standard input stream for the process executing the command. The stream is closed after the process
         * completes.
         *
         * @param inputStream The standard input stream for the process. Must not be null.
         * @return this
         */
        BaseExecSpec setStandardInput(InputStream inputStream);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. docs/erasure/storage-class/README.md

    ### Allowed values for STANDARD storage class
    
    `STANDARD` storage class implies more parity than `REDUCED_REDUNDANCY` class. So, `STANDARD` parity drives should be
    
    - Greater than or equal to 2, if `REDUCED_REDUNDANCY` parity is not set.
    - Greater than `REDUCED_REDUNDANCY` parity, if it is set.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

        }
    
        def "can group standard output streams with task if configured"() {
            given:
            buildFile << testLoggingStandardStream()
    
            file(JAVA_TEST_FILE_PATH) << javaTestClass {
                """
                    System.out.println("standard output");
                    System.err.println("standard error");
                """
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_std.txt

    [short] skip
    
    # Listing GOROOT should only find standard packages.
    cd $GOROOT/src
    go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}' ./...
    ! stdout .
    
    # Standard packages should include cmd, but not cmd/vendor.
    go list ./...
    stdout cmd/compile
    ! stdout vendor/golang.org
    ! stdout cmd/vendor
    
    # In GOPATH mode, packages vendored into GOROOT should be reported as standard.
    go list -f '{{if .Standard}}{{.ImportPath}}{{end}}' std cmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 702 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/process/ExecOutput.java

        /**
         * Gets a handle to the content of the process' standard output.
         *
         * @return handle of the standard output of the process.
         */
        StandardStreamContent getStandardOutput();
    
        /**
         * Gets a handle to the content of the process' standard error output.
         *
         * @return handle of the standard error output of the process.
         */
        StandardStreamContent getStandardError();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 00:18:08 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top