Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for getIdentity (0.49 sec)

  1. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/DefaultSwiftXCTestSuiteTest.groovy

            expect:
            def exe = testSuite.addBundle(identity, Stub(SwiftPlatform), Stub(NativeToolChainInternal), Stub(PlatformToolProvider))
            exe.name == 'testExecutable'
        }
    
        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
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

            );
        }
    
        private AfterExecutionResult executeWithCache(UnitOfWork work, C context, BuildCacheKey cacheKey) {
            CacheableWork cacheableWork = new CacheableWork(context.getIdentity().getUniqueId(), context.getWorkspace(), work);
            return Try.ofFailable(() -> work.isAllowedToLoadFromCache()
                    ? tryLoadingFromCache(cacheKey, cacheableWork)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftApplicationTest.groovy

            then:
            def ex = thrown(IllegalStateException)
            ex.message == "Cannot query the value of property 'developmentBinary' because it has no value available."
        }
    
        private NativeVariantIdentity getIdentity() {
            return Stub(NativeVariantIdentity) {
                getName() >> "debug"
                isDebuggable() >> true
                getTargetMachine() >> targetMachine(OperatingSystemFamily.MACOS, MachineArchitecture.X86_64)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftLibraryTest.groovy

            then:
            def ex = thrown(IllegalStateException)
            ex.message == "Cannot query the value of property 'developmentBinary' because it has no value available."
        }
    
        private NativeVariantIdentity getIdentity() {
            return new NativeVariantIdentity("test", null, null, null, true, false, 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
    - 4.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppBinary.java

            return compileTaskProperty;
        }
    
        public PlatformToolProvider getPlatformToolProvider() {
            return platformToolProvider;
        }
    
        public NativeVariantIdentity getIdentity() {
            return identity;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/StoreExecutionStateStep.java

                            executionOutputState
                        )))
                    .ifPresent(afterExecutionState -> history.store(
                        context.getIdentity().getUniqueId(),
                        // TODO: Encode the "no cache key available" case in the context type hierarchy
                        afterExecutionState)));
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

            public ExampleEntity(String identity, File outputDirectory) {
                this.identity = identity;
                this.outputDirectory = outputDirectory;
            }
    
            @Override
            public String getIdentity() {
                return identity;
            }
    
            @Override
            public Class<?> getType() {
                return getClass();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/PublishToMavenRepository.java

                }
    
                public Class<? extends Credentials> getType() {
                    return type;
                }
    
                public String getIdentity() {
                    return identity;
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             * Note that this identity is different from the raw identity in the execution engine,
             * since the execution engine does not guarantee uniqueness within the build tree.
             */
            String getIdentity();
        }
    
        public interface Result {
    
            /**
             * A message describing why the work was skipped.
             * <p>
             * Expected values are:
             * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/internal/DefaultCppLibraryTest.groovy

            expect:
            c1.publicHeaderDirs.files == [h1] as Set
            c2.publicHeaderDirs.files == [h2] as Set
        }
    
        private NativeVariantIdentity getIdentity() {
            // TODO Check that TargetMachine from NativeVariantIdentity is the same as the one from CppPlatform
            return Stub(NativeVariantIdentity) {
                getName() >> "debug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top