Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for getIdentity (0.35 sec)

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

            this.identity = identity;
        }
    
        protected IdentityContext(IdentityContext parent) {
            this(parent, parent.getInputProperties(), parent.getInputFileProperties(), parent.getIdentity());
        }
    
        /**
         * All currently known input properties.
         */
        public ImmutableSortedMap<String, ValueSnapshot> getInputProperties() {
            return inputProperties;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

        /**
         * The opaque identity of the transform execution.
         * <p>
         * Unique within the current build tree.
         *
         * @see ExecuteWorkBuildOperationType.Details#getIdentity()
         */
        String getIdentity();
    
        /**
         * The component identifier of the input artifact.
         */
        ComponentIdentifier getComponentId();
    
        /**
         * The from attributes of the registered transform.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

                        return result;
                    },
                    BuildOperationDescriptor
                        .displayName("Execute unit of work")
                        .details(new ExecuteWorkDetails(workType, context.getIdentity().getUniqueId()))))
                .orElseGet(() -> delegate.execute(work, context));
        }
    
        private static class ExecuteWorkDetails implements ExecuteWorkBuildOperationType.Details {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-base/src/main/java/org/gradle/caching/internal/CacheableEntity.java

     */
    public interface CacheableEntity {
        /**
         * The identity of the work as a part of the build to be reported in the origin metadata.
         */
        String getIdentity();
    
        /**
         * The type of the work to report in the origin metadata.
         */
        Class<?> getType();
    
        String getDisplayName();
    
        void visitOutputTrees(CacheableTreeVisitor visitor);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/CppModelBuilder.java

                    binaries.add(new DefaultCppExecutableModel(binary.getName(), cppBinary.getIdentity().getName(), binary.getBaseName().get(), compilationDetails, linkageDetails));
                } else if (binary instanceof CppSharedLibrary) {
                    CppSharedLibrary sharedLibrary = (CppSharedLibrary) binary;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftExecutable.java

            return Collections.singleton(new ConfigurationSoftwareComponentVariant(getIdentity().getRuntimeVariant(), runtimeElements.getAllArtifacts(), runtimeElements));
        }
    
        @Override
        public AttributeContainer getRuntimeAttributes() {
            return getIdentity().getRuntimeVariant().getAttributes();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cpp/internal/DefaultCppTestSuiteTest.groovy

            def exe = testSuite.addExecutable("Foo", identity, Stub(CppPlatform), Stub(NativeToolChainInternal), Stub(PlatformToolProvider))
            exe.name == 'testFooExecutable'
        }
    
        private NativeVariantIdentity getIdentity() {
            return Stub(NativeVariantIdentity) {
                getTargetMachine() >> targetMachine(OperatingSystemFamily.WINDOWS, MachineArchitecture.X86_64)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/internal/DefaultCppApplicationTest.groovy

            expect:
            def exe = application.addExecutable(identity, Stub(CppPlatform), Stub(NativeToolChainInternal), Stub(PlatformToolProvider))
            exe.name == 'mainDebug'
        }
    
        private NativeVariantIdentity getIdentity() {
            return Stub(NativeVariantIdentity) {
                getName() >> "debug"
                getTargetMachine() >> targetMachine(OperatingSystemFamily.WINDOWS, MachineArchitecture.X86_64)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignMutableWorkspaceStep.java

            this.delegate = delegate;
        }
    
        @Override
        public WorkspaceResult execute(UnitOfWork work, C context) {
            return ((MutableUnitOfWork) work).getWorkspaceProvider().withWorkspace(
                context.getIdentity().getUniqueId(),
                (workspace, history) -> {
                    WorkspaceContext delegateContext = new WorkspaceContext(context, workspace, history, history != null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/CacheManifest.java

        }
    
        public OriginMetadata getOriginMetadata() {
            return originMetadata;
        }
    
        public String getWorkType() {
            return workType;
        }
    
        public String getIdentity() {
            return identity;
        }
    
        public Map<String, List<ManifestEntry>> getPropertyManifests() {
            return propertyManifests;
        }
    
        public static class ManifestEntry {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top