Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 907 for getCsv (0.12 sec)

  1. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

        private final static String star_color = System.getenv("STAR_COLOR") == null ? "black" : System.getenv("STAR_COLOR");
        private final static String services_domain = System.getenv("SERVICES_DOMAIN") == null ? "" : ("." + System.getenv("SERVICES_DOMAIN"));
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ReflectiveEnvironment.java

        public void unsetenv(String name) {
            Map<String, String> map = getEnv();
            map.remove(name);
            if (OperatingSystem.current().isWindows()) {
                Map<String, String> env2 = getWindowsEnv();
                env2.remove(name);
            }
        }
    
        public void setenv(String name, String value) {
            Map<String, String> map = getEnv();
            map.put(name, value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    	}
    }
    
    // Getenv gets the value for the configuration key.
    // It consults the operating system environment
    // and then the go/env file.
    // If Getenv is called for a key that cannot be set
    // in the go/env file (for example GODEBUG), it panics.
    // This ensures that CanGetenv is accurate, so that
    // 'go env -w' stays in sync with what Getenv can retrieve.
    func Getenv(key string) string {
    	if !CanGetenv(key) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/SubsetScriptTransformer.java

                        value.removeIf(i -> i.getAlias().equals(importedClass.getAlias()));
                    } catch (Exception e) {
                        throw UncheckedException.throwAsUncheckedException(e);
                    }
                }
            }
    
            iter = source.getAST().getStaticImports().values().iterator();
            while (iter.hasNext()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 08 12:24:19 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. src/internal/testlog/log.go

    func Logger() Interface {
    	impl := logger.Load()
    	if impl == nil {
    		return nil
    	}
    	return *impl.(*Interface)
    }
    
    // Getenv calls Logger().Getenv, if a logger has been set.
    func Getenv(name string) {
    	if log := Logger(); log != nil {
    		log.Getenv(name)
    	}
    }
    
    // Open calls Logger().Open, if a logger has been set.
    func Open(name string) {
    	if log := Logger(); log != nil {
    		log.Open(name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 19:08:32 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildCache/conditional-action/groovy/build.gradle

    plugins {
        id('java-library')
    }
    
    // tag::conditionalAction[]
    if (System.getenv().containsKey("CI")) {
        tasks.withType(Test).configureEach {
            doFirst {
                println "Running test on CI"
            }
        }
    }
    // end::conditionalAction[]
    
    // tag::unconditionalAction[]
    tasks.withType(Test).configureEach {
        doFirst {
            if (System.getenv().containsKey("CI")) {
                println "Running test on CI"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 471 bytes
    - Viewed (0)
  7. pkg/tracing/tracing.go

    func newExporter() (trace.SpanExporter, error) {
    	set := os.Getenv("OTEL_TRACES_EXPORTER") == "otlp" || os.Getenv("OTEL_EXPORTER_OTLP_ENDPOINT") != "" || os.Getenv("OTEL_EXPORTER_OTLP_TRACES_ENDPOINT") != ""
    	if !set {
    		return nil, nil
    	}
    
    	proto := os.Getenv("OTEL_EXPORTER_OTLP_TRACES_PROTOCOL")
    	if proto == "" {
    		proto = os.Getenv("OTEL_EXPORTER_OTLP_PROTOCOL")
    	}
    	if proto == "" {
    		proto = "grpc"
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/syscall/syscall_test.go

    	}
    	newvalue, found := syscall.Getenv(key)
    	if !found {
    		t.Fatalf("Getenv failed to find %v variable (want value %q)", key, value)
    	}
    	if newvalue != value {
    		t.Fatalf("Getenv(%v) = %q; want %q", key, newvalue, value)
    	}
    }
    
    func TestEnv(t *testing.T) {
    	testSetGetenv(t, "TESTENV", "AVALUE")
    	// make sure TESTENV gets set to "", not deleted
    	testSetGetenv(t, "TESTENV", "")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/valueProviders/envVarsSysPropsDo/kotlin/build.gradle.kts

    val jdkVariables = listOf("JDK_8", "JDK_11", "JDK_17")
    val jdkLocations = jdkVariables.filter { v ->
        System.getenv(v) != null
    }.associate { v ->
        v to System.getenv(v)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 177 bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

    }
    
    tasks.withType<gradlebuild.performance.tasks.PerformanceTest>().configureEach {
        environment("GRADLE_INTERNAL_REPO_URL", System.getenv("GRADLE_INTERNAL_REPO_URL"))
        environment("GRADLE_INTERNAL_REPO_USERNAME", System.getenv("GRADLE_INTERNAL_REPO_USERNAME"))
        environment("GRADLE_INTERNAL_REPO_PASSWORD", System.getenv("GRADLE_INTERNAL_REPO_PASSWORD"))
    
        reportGeneratorClass = "org.gradle.performance.results.BuildScanReportGenerator"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top