Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for small7 (0.51 sec)

  1. cmd/erasure-object.go

    }
    
    // DeleteObjects deletes objects/versions in bulk, this function will still automatically split objects list
    // into smaller bulks if some object names are found to be duplicated in the delete list, splitting
    // into smaller bulks will avoid holding twice the write lock of the duplicated object names.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. src/os/os_test.go

    		t.Fatalf("open %q failed: %v", dir, err2)
    	}
    	defer file1.Close()
    	small := smallReaddirnames(file1, len(all)+100, t) // +100 in case we screw up
    	if len(small) < len(all) {
    		t.Fatalf("len(small) is %d, less than %d", len(small), len(all))
    	}
    	for i, n := range all {
    		if small[i] != n {
    			t.Errorf("small read %q mismatch: %v", small[i], n)
    		}
    	}
    }
    
    func TestReaddirNValues(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      // Timed Get
      // There are a few design constraints to consider
      // * We want to be responsive to small timeouts, unpark() has non trivial latency overheads (I
      //   have observed 12 micros on 64-bit linux systems to wake up a parked thread). So if the
      //   timeout is small we shouldn't park(). This needs to be traded off with the cpu overhead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      // Timed Get
      // There are a few design constraints to consider
      // * We want to be responsive to small timeouts, unpark() has non trivial latency overheads (I
      //   have observed 12 micros on 64-bit linux systems to wake up a parked thread). So if the
      //   timeout is small we shouldn't park(). This needs to be traded off with the cpu overhead of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  5. src/runtime/mprof.go

    //
    // There are several steps between the time that an M experiences contention and
    // when that contention may be added to the profile. This comes from our
    // constraints: We need to keep the critical section of each lock small,
    // especially when those locks are contended. The reporting code cannot acquire
    // new locks until the M has released all other locks, which means no memory
    // allocations and encourages use of (temporary) M-local storage.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. configure.py

              all_valid = False
            else:
              ver = int(sm_compute_match.group(2))
              if ver < 30:
                print(
                    'ERROR: TensorFlow only supports small CUDA compute'
                    ' capabilities of sm_30 and higher. Please re-specify the list'
                    ' of compute capabilities excluding version %s.' % ver)
                all_valid = False
              if ver < 35:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    		state.currentState.registers = make([][]SlotID, len(state.registers))
    	} else {
    		state.currentState.registers = state.currentState.registers[:len(state.registers)]
    	}
    
    	// A relatively small slice, but used many times as the return from processValue.
    	state.changedVars = newSparseSet(numVars)
    	state.changedSlots = newSparseSet(numSlots)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    	}
    
    	if a > elfreserve {
    		Errorf(nil, "ELFRESERVE too small: %d > %d with %d text sections", a, elfreserve, numtext)
    	}
    
    	// Verify the amount of space allocated for the elf header is sufficient.  The file offsets are
    	// already computed in layout, so we could spill into another section.
    	if a > int64(HEADR) {
    		Errorf(nil, "HEADR too small: %d > %d with %d text sections", a, HEADR, numtext)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    //
    // To avoid requesting more OS memory while there are unswept spans, when a
    // goroutine needs another span, it first attempts to reclaim that much memory
    // by sweeping. When a goroutine needs to allocate a new small-object span, it
    // sweeps small-object spans for the same object size until it frees at least
    // one object. When a goroutine needs to allocate large-object span from heap,
    // it sweeps spans until it frees at least that many pages into heap. There is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/asm0.go

    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
Back to top