Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 267 for Inits (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    1. *Unit Testing:* Verifies the smallest units of code, typically methods, in isolation. It uses Stubs or Mocks to isolate code from external dependencies.
    
    2. *Integration Testing:* Validates that multiple units or components work together.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

        }
    
        public ThreadHandle expectTimesOut(int value, TimeUnit units, Closure closure) {
            Date start = new Date();
            ThreadHandle threadHandle = start(closure);
            threadHandle.waitFor();
            Date end = new Date();
            long actual = end.getTime() - start.getTime();
            long expected = units.toMillis(value);
            if (actual < expected - 200) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradient_checker.cc

      struct BaseUnitsForType<TYPE> {                                   \
        static const std::vector<TYPE>& values() {                      \
          static std::vector<TYPE>* units = new std::vector<TYPE> INIT; \
          return *units;                                                \
        }                                                               \
      }
    
    SET_BASE_UNITS_FOR_TYPE(float, {1});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                assert status == "progress 2"
            }
            1 * listener.progress(_, _, _, _, _) >> { BuildOperationDescriptor descriptor, long progress, long total, String units, String status ->
                assert progress == 2
                assert total == 4
                assert units == "gold pieces"
            }
        }
    
        def "multiple threads can run independent operations concurrently"() {
            def id1
            def id2
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), type RtMsghdr struct, Fmask int32
    pkg syscall (freebsd-arm64), type RtMsghdr struct, Index uint16
    pkg syscall (freebsd-arm64), type RtMsghdr struct, Inits uint64
    pkg syscall (freebsd-arm64), type RtMsghdr struct, Msglen uint16
    pkg syscall (freebsd-arm64), type RtMsghdr struct, Pad_cgo_0 [2]uint8
    pkg syscall (freebsd-arm64), type RtMsghdr struct, Pid int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), type RtMsghdr struct, Flags int32
    pkg syscall (darwin-arm64), type RtMsghdr struct, Index uint16
    pkg syscall (darwin-arm64), type RtMsghdr struct, Inits uint32
    pkg syscall (darwin-arm64), type RtMsghdr struct, Msglen uint16
    pkg syscall (darwin-arm64), type RtMsghdr struct, Pad_cgo_0 [2]uint8
    pkg syscall (darwin-arm64), type RtMsghdr struct, Pid int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	}
    	// Add numeric tags
    	if format == nil {
    		format = defaultLabelFormat
    	}
    	for k, nvals := range numLabel {
    		units := numUnit[k]
    		for i, v := range nvals {
    			var t *Tag
    			if len(units) > 0 {
    				t = numericTags.findOrAddTag(format(v, units[i]), units[i], v)
    			} else {
    				t = numericTags.findOrAddTag(format(v, k), k, v)
    			}
    			if flat {
    				t.FlatDiv += dw
    				t.Flat += w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

    // Each matched pattern are rewritten by its quantized alternatives.
    //
    // Quantization method is determined by the `_quantization_method` attributes
    // attached to each quantizable units.
    //
    // Template constraints are imposed as follows:
    //
    // * `QuantizeOpT` should have only one operand.
    // * `DequantizeOpT` should have only one result.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Queues.java

       * @param q the blocking queue to be drained
       * @param buffer where to add the transferred elements
       * @param numElements the number of elements to be waited for
       * @param timeout how long to wait before giving up, in units of {@code unit}
       * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
       * @return the number of elements transferred
       * @throws InterruptedException if interrupted while waiting
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cadvisor_stats_provider.go

    		// On systemd using devicemapper each mount into the container has an
    		// associated cgroup. We ignore them to ensure we do not get duplicate
    		// entries in our summary. For details on .mount units:
    		// http://man7.org/linux/man-pages/man5/systemd.mount.5.html
    		if strings.HasSuffix(key, ".mount") {
    			continue
    		}
    		// Build the Pod key if this container is managed by a Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top