Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,072 for incremented (0.79 sec)

  1. subprojects/core/src/main/java/org/gradle/cache/internal/CacheVersionMapping.java

             * This is indicated by setting the current cache version to Integer.MAX_VALUE (so it cannot be further incremented).
             */
            public Builder retiredIn(String gradleVersion) {
                return changedTo(Integer.MAX_VALUE, gradleVersion);
            }
    
            public Builder changedTo(int cacheVersion, String minGradleVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 30 20:23:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/variable.cc

      }
      TensorHandle* packed_handle;
      TF_RETURN_IF_ERROR(TensorHandle::CreatePackedHandle(
          std::move(handles), eager_ctx, &packed_handle));
      // The call to `CreatePackedHandle` incremented the handles' reference count,
      // which we must now decrement to make the packed handle the owner of those
      // handles. We can't loop through the `handles` vector because it was
      // `std::move`d in the call above.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 08 20:55:40 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/batch/v1/generated.proto

      //   running pods are terminated.
      // - Ignore: indicates that the counter towards the .backoffLimit is not
      //   incremented and a replacement pod is created.
      // - Count: indicates that the pod is handled in the default way - the
      //   counter towards the .backoffLimit is incremented.
      // Additional values are considered to be added in the future. Clients should
      // react to an unknown action by skipping the rule.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/loopbce.go

    			// See https://go.dev/issue/63955
    			continue
    		}
    
    		// Expect the increment to be a nonzero constant.
    		if !inc.isGenericIntConst() {
    			continue
    		}
    		step := inc.AuxInt
    		if step == 0 {
    			continue
    		}
    
    		// Increment sign must match comparison direction.
    		// When incrementing, the termination comparison must be ind </<= limit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier_test.go

    	} else {
    		if epInfo.hnsID != "EPID-3" {
    			t.Errorf("%v does not match %v", epInfo.hnsID, endpointGuid1)
    		}
    	}
    
    	if *proxier.endPointsRefCount["EPID-3"] <= 0 {
    		t.Errorf("RefCount not incremented. Current value: %v", *proxier.endPointsRefCount[endpointGuid1])
    	}
    
    	if *proxier.endPointsRefCount["EPID-3"] != *epInfo.refCount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types.go

    	// incremented and a replacement pod is created.
    	PodFailurePolicyActionIgnore PodFailurePolicyAction = "Ignore"
    
    	// This is an action which might be taken on a pod failure - the pod failure
    	// is handled in the default way - the counter towards .backoffLimit,
    	// represented by the job's .status.failed field, is incremented.
    	PodFailurePolicyActionCount PodFailurePolicyAction = "Count"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  7. pkg/apis/batch/types.go

    	// incremented and a replacement pod is created.
    	PodFailurePolicyActionIgnore PodFailurePolicyAction = "Ignore"
    
    	// This is an action which might be taken on a pod failure - the pod failure
    	// is handled in the default way - the counter towards .backoffLimit,
    	// represented by the job's .status.failed field, is incremented.
    	PodFailurePolicyActionCount PodFailurePolicyAction = "Count"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/range.go

    		}
    
    		// We use a "pointer" to keep track of where we are in the backing array
    		// of the slice hs. This pointer starts at hs.ptr and gets incremented
    		// by the element size each time through the loop.
    		//
    		// It's tricky, though, as on the last iteration this pointer gets
    		// incremented to point past the end of the backing array. We can't
    		// let the garbage collector see that final out-of-bounds pointer.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. src/html/escape.go

    	// 0x00->'\uFFFD' is handled programmatically.
    	// 0x0D->'\u000D' is a no-op.
    }
    
    // unescapeEntity reads an entity like "&lt;" from b[src:] and writes the
    // corresponding "<" to b[dst:], returning the incremented dst and src cursors.
    // Precondition: b[src] == '&' && dst <= src.
    func unescapeEntity(b []byte, dst, src int) (dst1, src1 int) {
    	const attribute = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
  10. src/runtime/map_test.go

    	delete(m, key1)
    	m[key2]++
    	if n2 := m[key2]; n2 != 1 {
    		t.Errorf("incremented 0 to %d", n2)
    	}
    }
    
    func TestIncrementAfterDeleteValueInt32(t *testing.T) {
    	const key1 = 12
    	const key2 = 13
    
    	m := make(map[int]int32)
    	m[key1] = 99
    	delete(m, key1)
    	m[key2]++
    	if n2 := m[key2]; n2 != 1 {
    		t.Errorf("incremented 0 to %d", n2)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top