Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 502 for picard (0.18 sec)

  1. src/hash/test_cases.txt

    a
    ab
    abc
    abcd
    abcde
    abcdef
    abcdefg
    abcdefgh
    abcdefghi
    abcdefghij
    Discard medicine more than two years old.
    He who has a shady past knows that nice guys finish last.
    I wouldn't marry him with a ten foot pole.
    Free! Free!/A trip/to Mars/for 900/empty jars/Burma Shave
    The days of the digital watch are numbered.  -Tom Stoppard
    Nepal premier won't resign.
    For every action there is an equal and opposite government program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

                if (!client.isConnected()) {
                    LOGGER.info("Tried to reuse an existing sftp client, but unexpectedly found it disconnected.  Discarding and trying again.");
                    discard(client);
                    client = reuseExistingOrCreateNewClient(sftpHost);
                } else {
                    LOGGER.debug("Reusing an existing sftp client.");
                }
            }
    
            return client;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.h

    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // Marks a subset of nodes in the graph which are to be clustered
    // with an attribute _XlaCluster=<cluster id> so they are picked up by the
    // EncapsulateSubgraphsPass.
    class MarkForCompilationPass : public GraphOptimizationPass {
     public:
      MarkForCompilationPass() = default;
    
      Status Run(const GraphOptimizationPassOptions& options) override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/DefaultStreamHasher.java

            } finally {
                returnBuffer(buffer);
            }
        }
    
        private void returnBuffer(byte[] buffer) {
            // Retain buffer if there is capacity in the queue, otherwise discard
            buffers.offer(buffer);
        }
    
        private byte[] takeBuffer() {
            byte[] buffer = buffers.poll();
            if (buffer == null) {
                buffer = new byte[8192];
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. pkg/volume/util/fsquota/quota.go

    	GetQuotaOnDir(m mount.Interface, path string) (common.QuotaID, error)
    
    	// Does the path provided support quotas, and if so, what types
    	SupportsQuotas(m mount.Interface, path string) (bool, error)
    	// Assign a quota (picked by the quota mechanism) to a path,
    	// and return it.
    	AssignQuota(m mount.Interface, path string, poduid types.UID, bytes *resource.Quantity) error
    
    	// Get the quota-based storage consumption for the path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/testdata/tsan13.go

    	}
    }
    */
    import "C"
    
    import (
    	"io"
    	"runtime"
    	"runtime/pprof"
    	"unsafe"
    )
    
    func main() {
    	runtime.SetCgoTraceback(0, unsafe.Pointer(C.tsanTraceback), nil, nil)
    	pprof.StartCPUProfile(io.Discard)
    	C.runThreads(C.int(runtime.GOMAXPROCS(0)))
    	pprof.StopCPUProfile()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/net/sendfile_test.go

    		}
    	}()
    
    	wg.Add(1)
    	go func() {
    		// Connect to the server started two goroutines up and
    		// discard any data that it writes.
    		defer wg.Done()
    		conn, err := Dial("tcp", ln.Addr().String())
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		defer conn.Close()
    		io.Copy(io.Discard, conn)
    	}()
    
    	// Wait for the byte to be copied, meaning that sendfile has
    	// been called on the pipe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/compress/lzw/reader_test.go

    			for i := 0; i < b.N; i++ {
    				io.Copy(io.Discard, NewReader(bytes.NewReader(buf1), LSB, 8))
    			}
    		})
    		b.Run(fmt.Sprint("1e-Reuse", e), func(b *testing.B) {
    			b.StopTimer()
    			b.SetBytes(int64(n))
    			buf1 := getInputBuf(buf, n)
    			runtime.GC()
    			b.StartTimer()
    			r := NewReader(bytes.NewReader(buf1), LSB, 8)
    			for i := 0; i < b.N; i++ {
    				io.Copy(io.Discard, r)
    				r.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_cache.txt

    import (
    	"io"
    	"testing"
    )
    
    func FuzzEmpty(f *testing.F) {
        f.Fuzz(func (*testing.T, []byte) {})
    }
    
    func FuzzY(f *testing.F) {
    	f.Add([]byte("y"))
    	f.Fuzz(func(t *testing.T, b []byte) { Y(io.Discard, b) })
    }
    -- y.go --
    package y
    
    import (
    	"bytes"
    	"io"
    )
    
    func Y(w io.Writer, b []byte) {
    	if !bytes.Equal(b, []byte("y")) {
    		w.Write([]byte("not equal"))
    	}
    }
    -- empty/empty.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                value.isMissing -> {
                    // Can serialize a fixed value and discard the provider
                    // TODO - should preserve information about the source, for diagnostics at execution time
                    writeByte(1)
                }
    
                value.hasFixedValue() && sideEffect == null -> {
                    // Can serialize a fixed value and discard the provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top