Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 86 for getIpr (0.28 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeSoftwareModelParallelIntegrationTest.groovy

        reason = "always runs in parallel, our mac currently lacks proper toolchain installations")
    abstract class AbstractNativeSoftwareModelParallelIntegrationTest extends AbstractNativeParallelIntegrationTest {
        abstract HelloWorldApp getApp()
    
        @ToBeFixedForConfigurationCache
        def "can execute link executable tasks in parallel"() {
            given:
            withComponentForApp()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultBuildLogicBuildQueue.java

            } finally {
                lock.unlock();
            }
        }
    
        private FileLock lockBuildLogicQueueFile() {
            return fileLockManager.lock(
                new File(projectCacheDir.getDir(), "noVersion/buildLogic"),
                mode(FileLockManager.LockMode.Exclusive),
                "build logic queue"
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 23:00:15 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables.cc

      mlir::Builder builder(context);
      StringAttr resource_name_id = builder.getStringAttr(kResourceNameArgAttr);
    
      SmallSet<StringRef, 4> resource_names;
    
      for (func::FuncOp func : module.getOps<func::FuncOp>()) {
        for (int i = 0, e = func.getNumArguments(); i < e; ++i) {
          auto resource_arg =
              func.getArgAttrOfType<StringAttr>(i, kResourceNameArgAttr);
          if (!resource_arg) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/JacocoAgentJar.java

        }
    
        /**
         * Unzips the resolved {@code org.jacoco.agent.jar} to retrieve the {@code jacocoagent.jar}.
         *
         * @return a file pointing to the {@code jacocoagent.jar}
         */
        public File getJar() {
            if (agentJar == null) {
                agentJar = fileOperations.zipTree(getAgentConf().getSingleFile()).filter(new Spec<File>() {
                    @Override
                    public boolean isSatisfiedBy(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/test_util.cc

          device_mgr_.get(), Env::Default(), /*config=*/nullptr,
          TF_GRAPH_DEF_VERSION, lib_def_.get(), opts,
          /*default_thread_pool=*/nullptr, /*cluster_flr=*/nullptr);
      flr_ = pflr_->GetFLR("/job:localhost/replica:0/task:0/cpu:0");
    }
    
    Device* DeviceSetup::GetDevice(const string& device_name) {
      if (device_mgr_ == nullptr) {
        return nullptr;
      }
    
      string full_device_name = absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/layout/ProjectCacheDir.java

            this.dir = dir;
            this.buildOperationRunner = buildOperationRunner;
            this.deleter = deleter;
        }
    
        public File getDir() {
            return dir;
        }
    
        @Override
        public void stop() {
            VersionSpecificCacheCleanupAction cleanupAction = new VersionSpecificCacheCleanupAction(
                dir,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

            return this
        }
    
        IvyModuleHttpArtifact getIvy() {
            return new IvyModuleHttpArtifact(server, prefix, backingModule.ivy)
        }
    
        IvyModuleHttpArtifact getJar() {
            return new IvyModuleHttpArtifact(server, prefix, backingModule.jar)
        }
    
        @Override
        IvyModuleHttpArtifact getModuleMetadata() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyModule.java

    import java.util.Map;
    
    public interface IvyModule extends Module {
        String getOrganisation();
        @Override
        String getModule();
        String getRevision();
    
        ModuleArtifact getIvy();
    
        ModuleArtifact getJar();
    
        TestFile getIvyFile();
    
        TestFile getJarFile();
    
        TestFile getModuleMetadataFile();
    
        /**
         * Don't publish an ivy.xml / .module for this module.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

        builder.create<YieldOp>(island_op.getLoc(), yield_operands);
      }
    
      // Outline all the transitively called functions by moving them in the
      // outlined module.
      for (func::FuncOp func : outlined_module.getOps<func::FuncOp>()) {
        func.walk([&](Operation *op) {
          for (NamedAttribute attr : op->getAttrs()) {
            if (auto symbol_ref =
                    mlir::dyn_cast<FlatSymbolRefAttr>(attr.getValue())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyJavaModule.groovy

        }
    
        @Override
        ModuleArtifact getIvy() {
            backingModule.ivy
        }
    
        @Override
        ModuleArtifact getJar() {
            backingModule.jar
        }
    
        @Override
        ModuleArtifact getModuleMetadata() {
            backingModule.moduleMetadata
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top