Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for getBaseName (0.17 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/PublicationAwareComponent.java

    import org.gradle.api.provider.Provider;
    
    /**
     * This should become public at some point.
     */
    public interface PublicationAwareComponent extends SoftwareComponent {
        Provider<String> getBaseName();
    
        ComponentWithVariants getMainPublication();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppComponent.java

         */
        DomainObjectSet<? extends CppBinary> getBinaries();
    
        /**
         * Returns the base name of this component.
         */
        String getBaseName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeComponentSpec.java

    public abstract class AbstractNativeComponentSpec extends BaseComponentSpec implements NativeComponentSpec, HasIntermediateOutputsComponentSpec {
        private String baseName;
    
        @Override
        public String getBaseName() {
            return GUtil.getOrDefault(baseName, this::getName);
        }
    
        @Override
        public void setBaseName(String baseName) {
            this.baseName = baseName;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top