Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for getExecuter (0.47 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/FilteringProvider.java

        }
    
        protected void beforeRead(@SuppressWarnings("unused") EvaluationContext.ScopeContext context) {
            provider.getProducer().visitContentProducerTasks(producer -> {
                if (!producer.getState().getExecuted()) {
                    throw new InvalidUserCodeException(
                        String.format("Querying the filtered value of %s before %s has completed is not supported", provider, producer)
                    );
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

        }
    
        protected void beforeRead(EvaluationContext.ScopeContext context) {
            provider.getProducer().visitContentProducerTasks(producer -> {
                if (!producer.getState().getExecuted()) {
                    throw new InvalidUserCodeException(
                        String.format("Querying the mapped value of %s before %s has completed is not supported", provider, producer)
                    );
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

      absl::StatusOr<std::unique_ptr<DeviceDescription>> DescriptionForDevice(
          int ordinal) const override;
      absl::StatusOr<StreamExecutor*> ExecutorForDevice(int ordinal) override;
      absl::StatusOr<StreamExecutor*> GetExecutor(
          const StreamExecutorConfig& config) override;
      absl::StatusOr<std::unique_ptr<StreamExecutor>> GetUncachedExecutor(
          const StreamExecutorConfig& config) override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultConfigurableFilePermissionsTest.java

            assertEquals("READ permission incorrect", read, permission.getRead());
            assertEquals("WRITE permission incorrect", write, permission.getWrite());
            assertEquals("EXECUTE permission incorrect", execute, permission.getExecute());
        }
    
        private static void assertInvalidUnixPermission(String unixPermission, String errorMessage) {
            try {
                newUnixPermission(unixPermission).toUnixNumeric();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/stream_executor/stream_executor.cc

    }
    absl::StatusOr<StreamExecutor*> CPlatform::ExecutorForDevice(int ordinal) {
      stream_executor::StreamExecutorConfig config;
      config.ordinal = ordinal;
      return GetExecutor(config);
    }
    absl::StatusOr<StreamExecutor*> CPlatform::GetExecutor(
        const StreamExecutorConfig& config) {
      return executor_cache_.GetOrCreate(
          config, [&]() { return GetUncachedExecutor(config); });
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildTaskGraph.java

                    // running tasks at the same time
                    if (identifier.getTask().getState().getExecuted()) {
                        continue;
                    }
                    locateTask(identifier).queueForExecution();
                }
            }
    
            private BuildController buildControllerOf(BuildState target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

                ManagedScheduledExecutor createScheduled(String displayName, int fixedSize) {
                    throw new UnsupportedOperationException()
                }
            }
        }
    
        Executor getExecutor() {
            return new Executor() {
                void execute(Runnable runnable) {
                    startThread(runnable)
                }
            }
        }
    
        TestThread startThread(Runnable cl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

        private final SyncPoint syncPoint = new SyncPoint();
    
        /**
         * Creates an Executor which the test can control.
         */
        protected ExecutorService getExecutor() {
            if (executor == null) {
                executor = new ExecutorImpl();
            }
            return executor;
        }
    
        /**
         * Creates an ExecutorFactory for the test to use.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top