Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Deferrable (0.14 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             * If the cache already contains the outputs for the given work, an already finished {@link Deferrable} will be returned.
             * Otherwise, the execution is wrapped in a not-yet-complete {@link Deferrable} to be evaluated later.
             * The work is looked up by its {@link UnitOfWork.Identity identity} in the given cache.
             */
            <T> Deferrable<Try<T>> executeDeferred(Cache<Identity, IdentityCacheResult<T>> cache);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentifyStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import com.google.common.collect.ImmutableSortedMap;
    import org.gradle.cache.Cache;
    import org.gradle.internal.Deferrable;
    import org.gradle.internal.Try;
    import org.gradle.internal.execution.ExecutionEngine.IdentityCacheResult;
    import org.gradle.internal.execution.InputFingerprinter;
    import org.gradle.internal.execution.UnitOfWork;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/TransformingAsyncArtifactListenerTest.groovy

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ResolvedArtifactSet
    import org.gradle.api.internal.attributes.ImmutableAttributes
    import org.gradle.internal.Deferrable
    import org.gradle.internal.Try
    import org.gradle.internal.component.external.model.ImmutableCapabilities
    import org.gradle.internal.model.CalculatedValue
    import org.gradle.internal.operations.BuildOperation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/PrecompiledScriptTarget.java

        }
    
        @Override
        public boolean getSupportsPluginManagementBlock() {
            return supportsPluginManagementBlock;
        }
    
        @Override
        public void addConfiguration(Runnable runnable, boolean deferrable) {
            throw new UnsupportedOperationException();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.project.ProjectStateRegistry;
    import org.gradle.cache.Cache;
    import org.gradle.internal.Deferrable;
    import org.gradle.internal.Try;
    import org.gradle.internal.buildoption.InternalOptions;
    import org.gradle.internal.buildoption.StringInternalOption;
    import org.gradle.internal.execution.ExecutionEngine;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/DefaultScriptTarget.java

        }
    
        @Override
        public void attachScript(Script script) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public void addConfiguration(Runnable runnable, boolean deferrable) {
            runnable.run();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 05 12:43:45 UTC 2017
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/python/BUILD

            # because:
            # - tensorflow/python/_pywrap_mlir.so already depends on LLVM anyway
            # - tensorflow/python/_pywrap_mlir.so always loaded as part of python
            #   binding
            # TODO: It might be still preferrable to place graph_optimization_pass
            # as part of the libtensorflow_framework.so, as it is the central
            # place for core related components.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 07 23:17:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/simple_hardware.h

      // TODO(renjieliu): Consider whether we want an allowlist for custom op as
      // well.
      virtual bool IsNotSupportedOp(mlir::Operation* op) const = 0;
    
      // The larger the value is, the more preferrable over CPU.
      // If the value > 1, means the hardware has advantage over CPU.
      // If the value < 1, means CPU is more preferred.
      // If we specify 10.0, meaning the hardware is 10x faster than CPU.
      // The value should be > 0.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. doc/go_spec.html

    </li>
    </ul>
    
    <p>
    In all other cases, a (possibly partial) type argument list must be present.
    If a type argument list is absent or partial, all missing type arguments
    must be inferrable from the context in which the function is used.
    </p>
    
    <pre>
    // sum returns the sum (concatenation, for strings) of its arguments.
    func sum[T ~int | ~float64 | ~string](x... T) T { … }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top