Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,431 for uniqueId (0.19 sec)

  1. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.composite.IncludedBuildInternal;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.id.UniqueId;
    import org.gradle.internal.logging.services.LoggingServiceRegistry;
    import org.gradle.internal.nativeintegration.services.NativeServices;
    import org.gradle.internal.nativeintegration.services.NativeServices.NativeServicesMode;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h

      // operations to the dialect. Hooks will only apply to subsequent
      // instantations of the Dialect/MLIRContext.
      static void RegisterAdditionalOperationHook(TypeID uniqueId,
                                                  AdditionalOpFunction fn);
    
      // Re-define publicly the protected addOperations() method from the Dialect
      // class, usually used in a Dialect constructor. This allows hook
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StoreExecutionStateStepTest.groovy

            then:
            0 * _
        }
    
        void expectStore(boolean successful, ImmutableSortedMap<String, FileSystemSnapshot> finalOutputs) {
            1 * executionHistoryStore.store(
                identity.uniqueId,
                { AfterExecutionState executionState ->
                    executionState.outputFilesProducedByWork == finalOutputs
                    executionState.originMetadata == originMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

            });
        }
    
        @Override
        public <T extends Task> T createWithoutConstructor(String name, Class<T> type, long uniqueId) {
            assertMutable("createWithoutConstructor(String, Class, Object...)");
            return doCreate(taskIdentityFactory.recreate(name, type, project, uniqueId), null, Actions.doNothing());
        }
    
        @Override
        public Task findByPath(String path) {
            Path.validatePath(path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

        public interface Details {
    
            String getBuildPath();
    
            String getTaskPath();
    
            /**
             * See {@code org.gradle.api.internal.project.taskfactory.TaskIdentity#uniqueId}.
             */
            long getTaskId();
    
            Class<?> getTaskClass();
    
        }
    
        public interface Result {
    
            /**
             * The message describing why the task was skipped.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

            ImmutableWorkspaceProvider workspaceProvider = ((ImmutableUnitOfWork) work).getWorkspaceProvider();
            String uniqueId = context.getIdentity().getUniqueId();
            ImmutableWorkspace workspace = workspaceProvider.getWorkspace(uniqueId);
    
            return loadImmutableWorkspaceIfExists(work, workspace)
                .orElseGet(() -> executeInTemporaryWorkspace(work, context, workspace));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

    import org.gradle.internal.hash.ClassLoaderHierarchyHasher
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.TestHashCodes
    import org.gradle.internal.id.UniqueId
    import org.gradle.internal.logging.StandardOutputCapture
    import org.gradle.internal.operations.BuildOperationContext
    import org.gradle.internal.operations.BuildOperationRunner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/MutableUnitOfWorkBuilder.groovy

            this.validator = validator
            return this
        }
    
        @Immutable
        private static class SimpleIdentity implements UnitOfWork.Identity {
            final String uniqueId
        }
    
        MutableUnitOfWork build() {
            Map<String, OutputPropertySpec> outputFileSpecs = Maps.transformEntries(outputFiles, { key, value -> outputFileSpec(value) })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            def stashDirClasses = {
                compileTransactionDir.file("stash-dir")
                    .list()
                    .collect { it.replaceAll(".uniqueId.", "") }
                    .sort()
            }
    
            when: "First compilation is always full compilation"
            run language.compileTaskName
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

        }
    
        private boolean createDescriptorIfAbsent(TestIdentifier node) {
            MutableBoolean wasCreated = new MutableBoolean(false);
            descriptorsByUniqueId.computeIfAbsent(node.getUniqueId(), uniqueId -> {
                wasCreated.set(true);
                boolean isTestClassId = isTestClassIdentifier(node);
                if (node.getType().isContainer() || isTestClassId) {
                    if (isTestClassId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top