Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 654 for envs (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ResolverCoordinatorTest.kt

            val env1 = environmentWithGetScriptSectionTokensReturning("buildscript" to sequenceOf("foo"))
            val env2 = environmentWithGetScriptSectionTokensReturning("buildscript" to sequenceOf("bar"))
    
            val action1 = resolverActionFor(env1, null)
            org.gradle.kotlin.dsl.fixtures.withInstanceOf<ResolverAction.RequestNew>(action1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pkg/util/env/env.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package env
    
    import (
    	"os"
    	"strconv"
    )
    
    // GetEnvAsStringOrFallback returns the env variable for the given key
    // and falls back to the given defaultValue if not set
    func GetEnvAsStringOrFallback(key, defaultValue string) string {
    	if v := os.Getenv(key); v != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 27 15:25:19 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. src/syscall/env_windows.go

    			}
    		}
    	}
    }
    
    func Environ() []string {
    	envp, e := GetEnvironmentStrings()
    	if e != nil {
    		return nil
    	}
    	defer FreeEnvironmentStrings(envp)
    
    	r := make([]string, 0, 50) // Empty with room to grow.
    	const size = unsafe.Sizeof(*envp)
    	for *envp != 0 { // environment block ends with empty string
    		// find NUL terminator
    		end := unsafe.Pointer(envp)
    		for *(*uint16)(end) != 0 {
    			end = unsafe.Add(end, size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/base/env.go

    Bryan C. Mills <******@****.***> 1651693484 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:40:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. test/env.go

    Austin Clements <******@****.***> 1683557265 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:34:59 UTC 2023
    - 549 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m9/M9JavaConfigurabilityCrossVersionSpec.groovy

            env.java.jvmArguments
            env.java.jvmArguments == env2.java.jvmArguments
            env.java.jvmArguments == env3.java.jvmArguments
        }
    
        def "customized java home is reflected in the java.home and the build model"() {
            def jdk = AvailableJavaHomes.getAvailableJdk { targetDist.isToolingApiTargetJvmSupported(it.languageVersion) }
            Assume.assumeNotNull(jdk)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. go.env

    # This file contains the initial defaults for go command configuration.
    # Values set by 'go env -w' and written to the user's go/env file override these.
    # The environment overrides everything else.
    
    # Use the Go module mirror and checksum database by default.
    # See https://proxy.golang.org for details.
    GOPROXY=https://proxy.golang.org,direct
    GOSUMDB=sum.golang.org
    
    # Automatically download newer toolchains as directed by go.mod files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 505 bytes
    - Viewed (0)
  8. tools/packaging/common/sidecar.env

    Xiaoyang Liu <******@****.***> 1654020162 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. buildscripts/upgrade-tests/minio.env

    Harshavardhana <******@****.***> 1637520090 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Nov 21 18:41:30 UTC 2021
    - 74 bytes
    - Viewed (0)
  10. src/os/env.go

    cui fliter <******@****.***> 1699009739 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top