Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for getBaseName (0.48 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeComponentSpec.java

     */
    @Incubating
    public interface NativeComponentSpec extends ComponentSpec {
        /**
         * The name that is used to construct the output file names when building this component.
         */
        String getBaseName();
    
        /**
         * Sets the name that is used to construct the output file names when building this component.
         */
        void setBaseName(String baseName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppBinary.java

         */
        String getVariantName();
    
        /**
         * Returns the base name of this binary. This is used to calculate output file names.
         */
        String getBaseName();
    
        /**
         * Returns the compilation details.
         */
        CompilationDetails getCompilationDetails();
    
        /**
         * Returns the linkage details.
         */
        LinkageDetails getLinkageDetails();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/resources/src/main/java/org/gradle/internal/resource/LocalBinaryResource.java

    import java.net.URI;
    
    /**
     * Some binary resource available somewhere on the local file system.
     */
    public interface LocalBinaryResource extends Resource, ReadableContent {
        URI getURI();
    
        String getBaseName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/cpp/plugins/CppApplicationPlugin.java

            project.getExtensions().add(CppApplication.class, "application", application);
            project.getComponents().add(application);
    
            // Configure the component
            application.getBaseName().convention(project.getName());
            application.getTargetMachines().convention(useHostAsDefaultTargetMachine(targetMachineFactory));
            application.getDevelopmentBinary().convention(project.provider(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppLibrary.java

            DefaultCppSharedLibrary result = objectFactory.newInstance(DefaultCppSharedLibrary.class, getNames().append(identity.getName()), getBaseName(), getCppSource(), getAllHeaderDirs(), getImplementationDependencies(), targetPlatform, toolChain, platformToolProvider, identity);
            getBinaries().add(result);
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultNativeBinaryTest.groovy

                super(Names.of(name), objectFactory, componentImplementation)
            }
    
            @Override
            Provider<String> getBaseName() {
                throw new UnsupportedOperationException()
            }
    
            @Override
            boolean isDebuggable() {
                throw new UnsupportedOperationException()
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/ComponentWithNativeRuntime.java

     * @since 4.5
     */
    public interface ComponentWithNativeRuntime extends SoftwareComponent {
        /**
         * Returns the base name of this component. This is used to calculate output file names.
         */
        Provider<String> getBaseName();
    
        /**
         * Returns true if this component has debugging enabled.
         */
        boolean isDebuggable();
    
        /**
         * Returns true if this component is optimized.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/DefaultCppBinaryModel.java

        }
    
        public String getName() {
            return name;
        }
    
        public String getVariantName() {
            return variantName;
        }
    
        public String getBaseName() {
            return baseName;
        }
    
        public DefaultCompilationDetails getCompilationDetails() {
            return compilationDetails;
        }
    
        public DefaultLinkageDetails getLinkageDetails() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/internal/DefaultCppTestSuite.java

            Names executableNames = Names.of(getName() + variantName + "Executable", getName() + variantName);
            CppTestExecutable testBinary = objectFactory.newInstance(DefaultCppTestExecutable.class, executableNames, getBaseName(), getCppSource(), getPrivateHeaderDirs(), getImplementationDependencies(), getTestedComponent(), targetPlatform, toolChain, platformToolProvider, identity);
            getBinaries().add(testBinary);
            return testBinary;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/jvm/ClassDirectoryBinaryNamingScheme.java

            return name.equals("main") ? "" : name;
        }
    
        public String getDescription() {
            return "classes '" + baseName + "'";
        }
    
        public String getBaseName() {
            return baseName;
        }
    
        public String getBinaryName() {
            return baseName;
        }
    
        public String getTaskName(@Nullable String verb) {
            return getTaskName(verb, null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top