Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 434 for picard (0.13 sec)

  1. 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)
  2. 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)
  3. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

    import okhttp3.Interceptor
    import okhttp3.Protocol
    import okhttp3.Request
    import okhttp3.Response
    import okhttp3.internal.closeQuietly
    import okhttp3.internal.connection.RealCall
    import okhttp3.internal.discard
    import okhttp3.internal.http.ExchangeCodec
    import okhttp3.internal.http.HttpMethod
    import okhttp3.internal.http.RealResponseBody
    import okhttp3.internal.http.promisesBody
    import okhttp3.internal.stripBody
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/net/http/httputil/reverseproxy_test.go

    	backend.Config.ErrorLog = log.New(io.Discard, "", 0)
    
    	backendURL, err := url.Parse(backend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	proxyHandler := NewSingleHostReverseProxy(backendURL)
    
    	// Discards errors of the form:
    	// http: proxy error: read tcp 127.0.0.1:44643: use of closed network connection
    	proxyHandler.ErrorLog = log.New(io.Discard, "", 0)
    
    	frontend := httptest.NewServer(proxyHandler)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/doc.go

    //
    // # Analyzer unusedresult
    //
    // unusedresult: check for unused results of calls to some functions
    //
    // Some functions like fmt.Errorf return a result and have no side
    // effects, so it is always a mistake to discard the result. Other
    // functions may return an error that must not be ignored, or a cleanup
    // operation that must be called. This analyzer reports calls to
    // functions like these when the result of the call is ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 793 bytes
    - Viewed (0)
  10. src/runtime/testdata/testprognet/waiters.go

    	}
    
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		conn, err := listener.Accept()
    		if err != nil {
    			log.Fatal(err)
    		}
    		defer conn.Close()
    		if _, err := io.Copy(io.Discard, conn); err != nil {
    			log.Fatal(err)
    		}
    	}()
    
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		conn, err := net.Dial("tcp", listener.Addr().String())
    		if err != nil {
    			log.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top