Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 462 for picard (0.16 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

     */
    public class MessageHub implements AsyncStoppable {
        private enum State {Running, Stopping, Stopped}
    
        private static final Discard DISCARD = new Discard();
        private final ManagedExecutor workers;
        private final String displayName;
        private final Action<? super Throwable> errorHandler;
        private final Lock lock = new ReentrantLock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. src/image/png/writer_test.go

    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		Encode(io.Discard, img)
    	}
    }
    
    func BenchmarkEncodeNRGBA(b *testing.B) {
    	img := image.NewNRGBA(image.Rect(0, 0, 640, 480))
    	if img.Opaque() {
    		b.Fatal("expected image not to be opaque")
    	}
    	b.SetBytes(640 * 480 * 4)
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		Encode(io.Discard, img)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 14 08:14:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  3. src/io/ioutil/ioutil.go

    func NopCloser(r io.Reader) io.ReadCloser {
    	return io.NopCloser(r)
    }
    
    // Discard is an io.Writer on which all Write calls succeed
    // without doing anything.
    //
    // Deprecated: As of Go 1.16, this value is simply [io.Discard].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/net/mail/message_test.go

    				{
    					Name:    `JörgDoe`,
    					Address: "******@****.***",
    				},
    			},
    		},
    		// RFC 2047, Section 8.
    		{
    			`=?ISO-8859-1?Q?Andr=E9?= Pirard <PIRARD@vm1.ulg.ac.be>`,
    			[]*Address{
    				{
    					Name:    `André Pirard`,
    					Address: "PIRARD@vm1.ulg.ac.be",
    				},
    			},
    		},
    		// Custom example of RFC 2047 "B"-encoded ISO-8859-1 address.
    		{
    			`=?ISO-8859-1?B?SvZyZw==?= <******@****.***>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. src/compress/lzw/writer_test.go

    			b.SetBytes(int64(n))
    			for i := 0; i < b.N; i++ {
    				w := NewWriter(io.Discard, LSB, 8)
    				w.Write(buf1)
    				w.Close()
    			}
    		})
    		b.Run(fmt.Sprint("1e-Reuse", e), func(b *testing.B) {
    			b.SetBytes(int64(n))
    			w := NewWriter(io.Discard, LSB, 8)
    			for i := 0; i < b.N; i++ {
    				w.Write(buf1)
    				w.Close()
    				w.(*Writer).Reset(io.Discard, LSB, 8)
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 11:00:47 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. cmd/gendocs/gen_kubectl_docs.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}})
    	doc.GenMarkdownTree(kubectl, outDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/io_options.go

    // DEPRECATED: use genericiooptions.NewTestIOStreamsDiscard
    func NewTestIOStreamsDiscard() genericiooptions.IOStreams {
    	in := &bytes.Buffer{}
    	return IOStreams{
    		In:     in,
    		Out:    io.Discard,
    		ErrOut: io.Discard,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/GradleUserHomeScopeFileTimeStampInspector.java

            synchronized (lock) {
                try {
                    // These files have an unreliable timestamp - discard any cached state for them and rehash next time they are seen
                    if (currentTimestamp == getLastBuildTimestamp()) {
                        for (String path : filesWithCurrentTimestamp) {
                            fileHasher.discard(path);
                        }
                    }
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/NativeToolChainDiscoveryIntegrationTest.groovy

     */
    class NativeToolChainDiscoveryIntegrationTest extends AbstractInstalledToolChainIntegrationSpec {
    
        def helloWorldApp = new CppCompilerDetectingTestApp()
    
        def setup() {
            // Discard init script content generated by superclass
            initScript.text = ""
        }
    
        @ToBeFixedForConfigurationCache
        def "can discover tool chain in environment"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. cmd/genman/gen_kube_man.go

    		genMarkdown(kubectl, "", outDir)
    		for _, c := range kubectl.Commands() {
    			genMarkdown(c, "kubectl", outDir)
    		}
    	case "kubeadm":
    		// generate manpage for kubeadm
    		kubeadm := kubeadmapp.NewKubeadmCommand(bytes.NewReader(nil), io.Discard, io.Discard)
    		genMarkdown(kubeadm, "", outDir)
    		for _, c := range kubeadm.Commands() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top