Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for getBaseName (0.18 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/NativeTestSuites.java

        private static BinaryNamingScheme namingSchemeFor(NativeTestSuiteSpec testSuite, NativeBinarySpecInternal testedBinary, String typeString) {
            return testedBinary.getNamingScheme()
                .withComponentName(testSuite.getBaseName())
                .withBinaryType(typeString)
                .withRole("executable", true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaryRules.java

            return nativeBinary.getPlatformToolProvider().getStaticLibraryName(baseNameOf(nativeBinary));
        }
    
        private static String baseNameOf(NativeBinarySpec nativeBinary) {
            return nativeBinary.getComponent().getBaseName();
        }
    
        private static NativeToolChainInternal toolChainFor(NativeBinarySpec nativeBinary, NativeToolChainRegistryInternal toolChains) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppBinary.java

        }
    
        @Inject
        protected NativeDependencyCache getNativeDependencyCache() {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public Provider<String> getBaseName() {
            return baseName;
        }
    
        @Override
        public boolean isDebuggable() {
            return identity.isDebuggable();
        }
    
        @Override
        public boolean isOptimized() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/LocalFileStandInExternalResource.java

        @Override
        public URI getURI() {
            return localFile.toURI();
        }
    
        @Override
        public File getFile() {
            return localFile;
        }
    
        @Override
        public String getBaseName() {
            return localFile.getName();
        }
    
        @Override
        public File getContainingFile() {
            return localFile;
        }
    
        @Override
        public long getContentLength() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryNamingScheme.java

        private String createPrefix(List<String> dimensions) {
            if (dimensions.isEmpty()) {
                return "";
            }
            return makeName(dimensions.toArray(new String[0]));
        }
    
        public String getBaseName() {
            return parentName;
        }
    
        @Override
        public String getBinaryName() {
            return binaryName != null ? binaryName : makeName(dimensionPrefix, binaryType);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftBinary.java

            this.identity = identity;
        }
    
        @Override
        public Provider<String> getModule() {
            return module;
        }
    
        @Override
        public Provider<String> getBaseName() {
            return module;
        }
    
        @Override
        public boolean isDebuggable() {
            return identity.isDebuggable();
        }
    
        @Override
        public boolean isOptimized() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

                    final PlatformToolProvider toolProvider = ((NativeToolChainInternal) toolChain).select(currentPlatform);
    
                    Provider<RegularFile> exeLocation = project.getLayout().getBuildDirectory().file(binary.getBaseName().map(baseName -> toolProvider.getExecutableName("exe/" + names.getDirName() + baseName)));
                    task.getLinkedFile().set(exeLocation);
                    task.getTargetPlatform().set(currentPlatform);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

                    xcodeProject.getGroups().getHeaders().from(headers);
    
                    // TODO - should use the _install_ task for an executable
                    final String targetName = StringUtils.capitalize(component.getBaseName().get());
                    final XcodeTarget target = newTarget(targetName, targetName, toGradleCommand(project), getBridgeTaskPath(project), sources);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            and:
            buildFile << '''
                def res = new ReadableResource() {
                    InputStream read() { new FileInputStream(file('test.tar')) }
                    String getBaseName() { "foo" }
                    URI getURI() { new java.net.URI("foo") }
                    String getDisplayName() { "The foo" }
                }
    
                task copy(type: Copy) {
                    from tarTree(res)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    * The `rulePriority` getter and setter have been removed from the Pmd task and extension.
    Use the `rulesMinimumPriority` property instead.
    
    ==== Removal of `baseName` property in `distribution` plugin
    
    The `getBaseName()` and `setBaseName()` methods were removed from the `Distribution` class. Clients should replace the usages with the `distributionBaseName` property.
    
    ==== Using `AbstractTask`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top