Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 231 for Inits (0.56 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    This allows Gradle to fully utilize the resources available and complete builds faster.
    
    [[worker_api]]
    == The Worker API
    The Worker API provides the ability to break up the execution of a task action into discrete units of work and then execute that work concurrently and asynchronously.
    
    == Worker API example
    The best way to understand how to use the API is to go through the process of converting an existing custom task to use the Worker API:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	// The ID of the sandbox.
    	id string
    	// Creation time for the sandbox.
    	createTime time.Time
    	// If true, the sandbox is ready or still has containers.
    	active bool
    }
    
    // evictUnit is considered for eviction as units of (UID, container name) pair.
    type evictUnit struct {
    	// UID of the pod.
    	uid types.UID
    	// Name of the container in the pod.
    	name string
    }
    
    type containersByEvictUnit map[evictUnit][]containerGCInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/link.go

    	Textp        []loader.Sym
    	Moduledata   loader.Sym
    
    	PackageFile  map[string]string
    	PackageShlib map[string]string
    
    	tramps []loader.Sym // trampolines
    
    	compUnits []*sym.CompilationUnit // DWARF compilation units
    	runtimeCU *sym.CompilationUnit   // One of the runtime CUs, the last one seen.
    
    	loader  *loader.Loader
    	cgodata []cgodata // cgo directives to load, three strings are args for loadcgo
    
    	datap  []loader.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. android/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
    - 16K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    + Create a topic branch from where you want to base your work (this is usually the master branch).
      Push your changes to a topic branch in your fork of the repository.
    + Make commits of logical units.
    + Respect the original code style: by using the same [codestyle][code-style],
      patches should only highlight the actual difference, not being disturbed by any formatting issues:
      + Only use spaces for indentation.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  6. guava-gwt/pom.xml

                Let's take the warnings for one module, c.g.c.base.testModule, as an example:
    
                  [INFO] Validating units:
                  [INFO]    Ignored 53 units with compilation errors in first pass.
                  [INFO] Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top