Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 133 for ONCE (0.11 sec)

  1. cmd/erasure-object.go

    	var totalBytesRead int64
    	erasure, err := NewErasure(ctx, fi.Erasure.DataBlocks, fi.Erasure.ParityBlocks, fi.Erasure.BlockSize)
    	if err != nil {
    		return toObjectErr(err, bucket, object)
    	}
    
    	var healOnce sync.Once
    
    	for ; partIndex <= lastPartIndex; partIndex++ {
    		if length == totalBytesRead {
    			break
    		}
    
    		partNumber := fi.Parts[partIndex].Number
    
    		// Save the current part name and size.
    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/cmd/go/internal/modget/get.go

    // a path literal.
    //
    // The candidate packages and modules for path literals depend only on the
    // initial build list, not the current build list, so we only need to query path
    // literals once.
    func (r *resolver) performPathQueries(ctx context.Context) {
    	for _, q := range r.pathQueries {
    		q := q
    		r.work.Add(func() {
    			if q.version == "none" {
    				r.queryNone(ctx, q)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Operations are applied to the input(s) according to the following rules:
    
     (a) Generalized Diagonals: For input dimensions corresponding to axis labels
         appearing more than once in the same input subscript, we take the
         generalized (`k`-dimensional) diagonal.
         For example, in the equation `iii->i` with input shape `[3, 3, 3]`, the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        The analysis identifies all IslandOps within the graph which could be merged together.
        The goal is to merge as many islands as possible.
        Once analysis is completed, the pass merges all IslandOps in a single scan.
    
        For example given the following program with two disjunct islands:
    
        ```mlir
          func @test(%arg0 : tensor<i1>) -> tensor<f32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Added the implementation for `PodRecreationPolicy` to wait for the creation of pods once the existing ones are fully terminated. ([#117015](https://github.com/kubernetes/kubernetes/pull/117015), [@kannon92](https://github.com/kannon92))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

       ([#123341](https://github.com/kubernetes/kubernetes/pull/123341), [@neolit123](https://github.com/neolit123))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      mkdir -p /etc/srv/kubernetes/kube-scheduler
      cat <<EOF >/etc/srv/kubernetes/kube-scheduler/config
    ${KUBE_SCHEDULER_CONFIG}
    EOF
    }
    
    # TODO(#92143): Remove legacy policy config creation once kube-scheduler config is GA.
    function create-kubescheduler-policy-config {
      echo "Creating kube-scheduler policy config file"
      mkdir -p /etc/srv/kubernetes/kube-scheduler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    				if !ok || s.IsTerminationRequested() || s.IsTerminationStarted() || s.IsFinished() || s.IsWorking() || s.IsDeleted() {
    					t.Fatalf("unexpected requested pod termination: %#v", s)
    				}
    
    				// pod was synced once
    				if actual, expected := records[uid], []syncPodRecord{
    					{name: "pod1", updateType: kubetypes.SyncPodCreate},
    				}; !reflect.DeepEqual(expected, actual) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - In the `wait.PollUntilContextTimeout` function, if `immediate` is true, the condition will now be invoked before waiting, guaranteeing that the condition is invoked at least once and then wait a interval before executing again. ([#119762](https://github.com/kubernetes/kubernetes/pull/119762), [@AxeZhan](https://github.com/AxeZhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //	    (for example, -benchtime 100x).
    //
    //	-count n
    //	    Run each test, benchmark, and fuzz seed n times (default 1).
    //	    If -cpu is set, run n times for each GOMAXPROCS value.
    //	    Examples are always run once. -count does not apply to
    //	    fuzz tests matched by -fuzz.
    //
    //	-cover
    //	    Enable coverage analysis.
    //	    Note that because coverage works by annotating the source
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top