Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 189 for picard (0.22 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/debug/elf/testdata/multiple-code-sections.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Build with:
    // gcc -g multiple-code-sections.c -Wl,--emit-relocs -Wl,--discard-none -Wl,-zmax-page-size=1 -fno-asynchronous-unwind-tables -o go-relocation-test-gcc930-ranges-with-rela-x86-64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 31 18:42:38 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. samples/guide/src/main/java/okhttp3/recipes/PrintEventsNonConcurrent.java

        try (Response response = client.newCall(request).execute()) {
          // Consume and discard the response body.
          response.body().source().readByteString();
        }
    
        System.out.println("REQUEST 2 (pooled connection)");
        try (Response response = client.newCall(request).execute()) {
          // Consume and discard the response body.
          response.body().source().readByteString();
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 16 23:20:49 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  10. 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)
Back to top