Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 165 for picard (0.12 sec)

  1. src/crypto/tls/ech_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	configs, err := parseECHConfigList(b)
    	if err != nil {
    		t.Fatal(err)
    	}
    	config := pickECHConfig(configs)
    	if config != nil {
    		t.Fatal("pickECHConfig picked an invalid config")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcweb/hg.go

    		// write anything else to stdout, but it's not a big deal if it does anyway.
    		// Keep the stdout pipe open so that 'hg serve' won't get a SIGPIPE, but
    		// actively discard its output so that it won't hang on a blocking write.
    		wg.Add(1)
    		go func() {
    			io.Copy(io.Discard, r)
    			wg.Done()
    		}()
    
    		u, err := url.Parse(strings.TrimSpace(line))
    		if err != nil {
    			logger.Printf("%v: %v", cmd, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/ant/BasicAntBuilder.java

    public class BasicAntBuilder extends org.gradle.api.AntBuilder implements Closeable {
        private final Field nodeField;
        private final List children;
    
        public BasicAntBuilder() {
            // These are used to discard references to tasks so they can be garbage collected
            Field collectorField;
            try {
                nodeField = groovy.ant.AntBuilder.class.getDeclaredField("lastCompletedNode");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  4. src/log/slog/json_handler_test.go

    		wc    io.Writer
    		attrs []any
    	}{
    		{"separate", io.Discard, []any{
    			String("program", "my-test-program"),
    			String("package", "log/slog"),
    			String("method", "GET"),
    			String("URL", "https://pkg.go.dev/golang.org/x/log/slog"),
    			String("traceID", "2039232309232309"),
    			String("addr", "127.0.0.1:8080"),
    		}},
    		{"struct", io.Discard, structAttrs},
    		{"struct file", outFile, structAttrs},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/consumer/build.gradle

    /*
     * This sample demonstrates the ability to selectively include projects
     * from the local directory rather than using an external dependency.
     *
     * By default all projects are considered external and are picked up
     * from the "repo" ivy repository.  To include local projects in a build,
     * set the "useLocal" system property on the gradle command line:
     *
     *   gradle -DuseLocal=project1,project2 :showJarFiles
     *
     */
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/gprof.go

    	go C.CallGoSleep()
    	go C.CallGoSleep()
    	go C.CallGoSleep()
    	time.Sleep(1 * time.Second)
    
    	prof := pprof.Lookup("goroutine")
    	prof.WriteTo(io.Discard, 1)
    	fmt.Println("OK")
    }
    
    //export GoSleep
    func GoSleep() {
    	time.Sleep(time.Hour)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 11 15:34:02 UTC 2021
    - 868 bytes
    - Viewed (0)
  7. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningWithGpgCmdIntegrationSpec.groovy

                signing {
                    useGpgCmd()
                    sign(jar)
                }
            """
    
            // Remove the 'signing.gnupg.keyName' entry from the gradle.properties file, so the default key is picked up
            Properties properties = new Properties()
            properties.load(propertiesFile.newInputStream())
            properties.remove("signing.gnupg.keyName")
            properties.store(propertiesFile.newOutputStream(), "")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/consumer/build.gradle.kts

    /*
     * This sample demonstrates the ability to selectively include projects
     * from the local directory rather than using an external dependency.
     *
     * By default all projects are considered external and are picked up
     * from the "repo" ivy repository.  To include local projects in a build,
     * set the "useLocal" system property on the gradle command line:
     *
     *   gradle -DuseLocal=project1,project2 :showJarFiles
     *
     */
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/connection/ProviderOperationParameters.java

         * @since 2.3-rc-1
         */
        Boolean isColorOutput();
    
        /**
         * @return When null, discard the stdout (rather than forward to the current process' stdout)
         * @since 1.0-milestone-3
         */
        @Nullable
        OutputStream getStandardOutput();
    
        /**
         * @return When null, discard the stderr (rather than forward to the current process' stdout)
         * @since 1.0-milestone-3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. cmd/genyaml/gen_kubectl_yaml.go

    	// regardless of where we run.
    	os.Setenv("HOME", "/home/username")
    	kubectl := cmd.NewKubectlCommand(cmd.KubectlOptions{IOStreams: genericiooptions.IOStreams{In: bytes.NewReader(nil), Out: io.Discard, ErrOut: io.Discard}})
    	genYaml(kubectl, "", outDir)
    	for _, c := range kubectl.Commands() {
    		genYaml(c, "kubectl", outDir)
    	}
    }
    
    // Temporary workaround for yaml lib generating incorrect yaml with long strings
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top