Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 184 for Hour (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[upgrading_version_7]]
    = Upgrading your build from Gradle 7.x to 8.0
    
    This chapter provides the information you need to migrate your Gradle 7.x builds to Gradle 8.0.
    For migrating from Gradle 6.x or earlier, complete the  <<upgrading_version_6.adoc#upgrading_version_6, older migration guide>> first.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

        checkNotNull(a);
        checkNotNull(b);
        checkNotNull(c);
        return concat(consumingForArray(a, b, c));
      }
    
      /**
       * Combines four iterators into a single iterator. The returned iterator iterates across the
       * elements in {@code a}, followed by the elements in {@code b}, followed by the elements in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

        checkNotNull(a);
        checkNotNull(b);
        checkNotNull(c);
        return concat(consumingForArray(a, b, c));
      }
    
      /**
       * Combines four iterators into a single iterator. The returned iterator iterates across the
       * elements in {@code a}, followed by the elements in {@code b}, followed by the elements in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. .bazelrc

    # configs. If your project fails to build with Clang, you can use these
    # unsupported flags to replace the release flags in your build command.
    # However, please note that the old toolchain is no longer officially supported
    # by TensorFlow and the unsupported configs will be removed soon b/299962977. We
    # strongly recommend that you migrate to Clang as your compiler for TensorFlow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    		// Compute the huge page boundary above our candidate.
    		pagesPerHugePage := physHugePageSize / pageSize
    		hugePageAbove := uint(alignUp(uintptr(start), pagesPerHugePage))
    
    		// If that boundary is within our current candidate, then we may be breaking
    		// a huge page.
    		if hugePageAbove <= end {
    			// Compute the huge page boundary below our candidate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // If Image contains a "/", it will replace the entire `image` in the pod.
      string image = 4;
    
      // The Repair controller has 3 modes (labelPods, deletePods, and repairPods). Pick which one meets your use cases. Note only one may be used.
      // The mode defines the action the controller will take when a pod is detected as broken.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # define GTEST_USES_POSIX_RE 1
    
    #elif GTEST_OS_WINDOWS
    
    // <regex.h> is not available on Windows.  Use our own simple regex
    // implementation instead.
    # define GTEST_USES_SIMPLE_RE 1
    
    #else
    
    // <regex.h> may not be available on this platform.  Use our own
    // simple regex implementation instead.
    # define GTEST_USES_SIMPLE_RE 1
    
    #endif  // GTEST_HAS_POSIX_RE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Find the TPUReplicationMetadata or TPUCompilationResult ops which will be
      // cloned/inserted into each region. We add them to the merged_set so that
      // they're ignored when extracting the four main functions.
      found_op = nullptr;
      for (OpType op : func.getOps<OpType>()) {
        if (found_op != nullptr) {
          func.emitOpError() << "number of " << found_op.getOperationName()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

        Set<Object> zero = ImmutableSet.of();
        Set<Set<Object>> one = powerSet(zero);
        Set<Set<Set<Object>>> two = powerSet(one);
        Set<Set<Set<Set<Object>>>> four = powerSet(two);
        Set<Set<Set<Set<Set<Object>>>>> sixteen = powerSet(four);
        Set<Set<Set<Set<Set<Set<Object>>>>>> sixtyFiveThousandish = powerSet(sixteen);
        assertEquals(1 << 16, sixtyFiveThousandish.size());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. configure.py

            'device at: https://developer.nvidia.com/cuda-gpus. Each capability '
            'can be specified as "x.y" or "compute_xy" to include both virtual and'
            ' binary GPU code, or as "sm_xy" to only include the binary '
            'code.\nPlease note that each additional compute capability '
            'significantly increases your build time and binary size, and that '
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top