Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 685 for getCsv (0.2 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoReport.java

                });
            }
            if (reports.getCsv().getRequired().get()) {
                antBuilder.invokeMethod("csv", new Object[]{
                    ImmutableMap.<String, Object>of("destfile", reports.getCsv().getOutputLocation().getAsFile().get())
                });
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/JacocoReportsContainerImpl.java

            return (DirectoryReport)getByName("html");
        }
    
        @Override
        public SingleFileReport getXml() {
            return (SingleFileReport)getByName("xml");
        }
    
        @Override
        public SingleFileReport getCsv() {
            return (SingleFileReport)getByName("csv");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportsContainer.java

         */
        @Internal
        SingleFileReport getXml();
    
        /**
         * The JaCoCo (single file) CSV report
         *
         * @return The JaCoCo (single file) CSV report
         */
        @Internal
        SingleFileReport getCsv();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Reporting.java

     * <pre>
     * class MyTask implements Reporting&lt;MyReportContainer&gt; {
     *     // implementation
     * }
     *
     * interface MyReportContainer extends ReportContainer&lt;Report&gt; {
     *     Report getHtml();
     *     Report getCsv();
     * }
     * </pre>
     * <p>
     * The reporting aspects of such a task can be configured as such:
     * </p>
     * <pre>
     * task my(type: MyTask) {
     *     reports {
     *         html.required = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/OptionsVerifier.groovy

                processEnv["${ENV_VARIABLES}"] = [:]
                System.getenv().each { key, value ->
                    processEnv["${ENV_VARIABLES}"][key] = value
                }
    
                new File('${TextUtil.normaliseFileSeparators(processJsonFile.absolutePath)}').text = groovy.json.JsonOutput.toJson(processEnv)
            """
        }
    
        interface Option {
            String getDsl();
    
            void verify(Map processEnv);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/path/match.go

    					failed = true
    				}
    				s = s[1:]
    			}
    			chunk = chunk[1:]
    		}
    	}
    	if failed {
    		return "", false, nil
    	}
    	return s, true, nil
    }
    
    // getEsc gets a possibly-escaped character from chunk, for a character class.
    func getEsc(chunk string) (r rune, nchunk string, err error) {
    	if len(chunk) == 0 || chunk[0] == '-' || chunk[0] == ']' {
    		err = ErrBadPattern
    		return
    	}
    	if chunk[0] == '\\' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. src/os/env.go

    	}
    	return s[:i], i
    }
    
    // Getenv retrieves the value of the environment variable named by the key.
    // It returns the value, which will be empty if the variable is not present.
    // To distinguish between an empty value and an unset value, use [LookupEnv].
    func Getenv(key string) string {
    	testlog.Getenv(key)
    	v, _ := syscall.Getenv(key)
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableRead.groovy

    package org.gradle.internal.cc.impl.inputs.undeclared
    
    abstract class EnvVariableRead extends BuildInputRead {
        static EnvVariableRead getEnv(String name) {
            return new EnvVariableRead() {
                @Override
                String getKotlinExpression() {
                    return "System.getenv(\"$name\")"
                }
            }
        }
    
        static EnvVariableRead getEnvGet(String name) {
            return new EnvVariableRead() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top