Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for sweeping (0.16 sec)

  1. src/debug/elf/file_test.go

    	// Test Data method.
    	b, err := sec.Data()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(wantData, b) {
    		t.Fatalf("want data %x, got %x", wantData, b)
    	}
    
    	// Test Open method and seeking.
    	buf, have, count := make([]byte, len(b)), make([]bool, len(b)), 0
    	sf := sec.Open()
    	if got, err := sf.Seek(0, io.SeekEnd); got != int64(len(b)) || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. cmd/xl-storage_test.go

    			[]byte("world"), nil,
    		},
    		// Reading from an object but buffer size greater. - 8
    		{
    			volume, "myobject",
    			7, 8,
    			[]byte("world"),
    			io.ErrUnexpectedEOF,
    		},
    		// Seeking ahead returns io.EOF. - 9
    		{
    			volume, "myobject", 14, 1, nil, io.EOF,
    		},
    		// Empty volume name. - 10
    		{
    			"", "myobject", 14, 1, nil, errVolumeNotFound,
    		},
    		// Empty filename name. - 11
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    This will do the following:
    
    * Add a standard header to the key
    * Rewrite the key using Gradle's own format, which trims the key to the bare minimum
    * Move the key to its sorted location, keeping the file reproducible
    
    [[sec:add-binary-keyring]]
    === Adding keys to the binary keyring
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	// collecting when the heap reaches GOGC*live results in many GC
    	// cycles and high total per-GC overhead. This minimum amortizes this
    	// per-GC overhead while keeping the heap reasonably small.
    	//
    	// During initialization this is set to 4MB*GOGC/100. In the case of
    	// GOGC==0, this will set heapMinimum to 0, resulting in constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // both the original map and the patch because getting a deep copy of a map in
    // golang is highly non-trivial.
    // flag mergeOptions.MergeParallelList controls if using the parallel list to delete or keeping the list.
    // If patch contains any null field (e.g. field_1: null) that is not
    // present in original, then to propagate it to the end result use
    // mergeOptions.IgnoreUnmatchedNulls == false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    	//
    	// - Keep a ring buffer of the last N logical frames and use this to print
    	//   the bottom frames once we reach the end of the stack. This works, but
    	//   requires keeping a surprising amount of state on the stack, and we have
    	//   to run the cgo symbolizer twice—once to count frames, and a second to
    	//   print them—since we can't retain the strings it returns.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    	smallFileThreshold = 128 * humanize.KiByte // Optimized for NVMe/SSDs
    
    	// For hardrives it is possible to set this to a lower value to avoid any
    	// spike in latency. But currently we are simply keeping it optimal for SSDs.
    
    	// bigFileThreshold is the point where we add readahead to put operations.
    	bigFileThreshold = 128 * humanize.MiByte
    
    	// XL metadata file carries per object metadata.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/testing/testing.go

    	}
    	running.Store(t.name, highPrecisionTimeNow())
    
    	// Instead of reducing the running count of this test before calling the
    	// tRunner and increasing it afterwards, we rely on tRunner keeping the
    	// count correct. This ensures that a sequence of sequential tests runs
    	// without being preempted, even when their parent is a parallel test. This
    	// may especially reduce surprises if *parallel == 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top