Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for deltas (0.23 sec)

  1. cmd/bucket-handlers.go

    	encodedSuccessResponse := encodeResponse(response)
    
    	// Write response.
    	writeSuccessResponseXML(w, encodedSuccessResponse)
    }
    
    // DeleteMultipleObjectsHandler - deletes multiple objects.
    func (api objectAPIHandlers) DeleteMultipleObjectsHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "DeleteMultipleObjects")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    		return nil, now
    	} else {
    		// Is this P behind on the fractional utilization
    		// goal?
    		//
    		// This should be kept in sync with pollFractionalWorkerExit.
    		delta := now - c.markStartTime
    		if delta > 0 && float64(pp.gcFractionalMarkTime)/float64(delta) > c.fractionalUtilizationGoal {
    			// Nope. No need to run a fractional worker.
    			gcBgMarkWorkerPool.push(&node.node)
    			return nil, now
    		}
    		// Run a fractional worker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    		}, index)
    	}
    	// return errors if any during deletion
    	return reduceWriteQuorumErrs(ctx, g.Wait(), objectOpIgnoredErrs, writeQuorum)
    }
    
    // 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
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	// from original to modified. To find it, we compute deletions, which are the deletions from
    	// original to modified, and delta, which is the difference from current to modified without
    	// deletions, and then apply delta to deletions as a patch, which should be strictly additive.
    	deltaMapDiffOptions := DiffOptions{
    		IgnoreDeletions: true,
    		SetElementOrder: true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

      // output from said node may have changed.  This is fine; only switches
      // propagate different deadness along different output edges, and since the
      // delta is solely due to the input *values* (and not input deadness), the
      // delta should not change in the second iteration.
      std::vector<bool> should_revisit;
      should_revisit.resize(graph_.num_node_ids());
      for (Node* n : topo) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    		// contention time could be arbitrarily high when considering
    		// OS scheduler delays, or any other delays from the environment:
    		// time keeps ticking during these delays. By making the upper
    		// bound proportional to the wall time in blockMutexN, in theory
    		// we're accounting for all these possible delays.
    		d := time.Duration(total)
    		lo := time.Duration(N * D * 9 / 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    		}
    
    		return s.WriteAll(ctx, volume, pathJoin(path, xlStorageFormatFile), buf)
    	}
    
    	return s.deleteFile(volumeDir, pathJoin(volumeDir, path, xlStorageFormatFile), true, false)
    }
    
    // DeleteVersions deletes slice of versions, it can be same object
    // or multiple objects.
    func (s *xlStorage) DeleteVersions(ctx context.Context, volume string, versions []FileInfoVersions, opts DeleteOptions) []error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  8. pkg/controller/replicaset/replica_set_test.go

    		return fmt.Errorf("Unexpected number of creates.  Expected %d, saw %d\n", e, a)
    	}
    
    	if e, a := expectedDeletes, len(fakePodControl.DeletePodName); e != a {
    		return fmt.Errorf("Unexpected number of deletes.  Expected %d, saw %d\n", e, a)
    	}
    
    	if e, a := expectedPatches, len(fakePodControl.Patches); e != a {
    		return fmt.Errorf("Unexpected number of patches.  Expected %d, saw %d\n", e, a)
    	}
    
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    //go:cgo_import_dynamic libc_access access "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
    	_, _, e1 := syscall_syscall(libc_adjtime_trampoline_addr, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_adjtime_trampoline_addr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    //go:cgo_import_dynamic libc_access access "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
    	_, _, e1 := syscall_syscall(libc_adjtime_trampoline_addr, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_adjtime_trampoline_addr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top