Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,733 for Binary (0.11 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryTasksIntegrationTest.groovy

            "sampleLibBinaryOne" | "binary lifecycle task"
        }
    
        def "details of rule-added tasks are visible in model report"() {
            given:
            buildFile << '''
            class BinaryTasksPlugin extends RuleSource {
                @BinaryTasks
                void createSampleComponentComponents(ModelMap<Task> tasks, SampleBinary binary) {
                    tasks.create("${binary.projectScopedName}Task")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/DocumentationPlugin.groovy

            binaries.create("exploded") { binary ->
                outputDir = new File(buildDir, "${component.name}/${binary.name}")
            }
        }
    // end::binaries-generation[]
    
    // tag::text-tasks-generation[]
        @BinaryTasks
        void generateTextTasks(ModelMap<Task> tasks, final DocumentationBinary binary) {
            binary.inputs.withType(TextSourceSet) { textSourceSet ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinaryTest.groovy

            getName() >> "lib"
        }
        def binary = new DefaultPrebuiltSharedLibraryBinary("name", prebuiltLibrary, Stub(BuildType), Stub(NativePlatform), Stub(Flavor), TestFiles.fileCollectionFactory())
    
        def "has useful string representation"() {
            expect:
            binary.toString() == "prebuilt shared library 'lib:name'"
            binary.displayName == "prebuilt shared library 'lib:name'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/DefaultNativeDependencySet.java

        private final NativeLibraryBinary binary;
    
        public DefaultNativeDependencySet(NativeLibraryBinary binary) {
            this.binary = binary;
        }
    
        @Override
        public FileCollection getIncludeRoots() {
            return binary.getHeaderDirs();
        }
    
        @Override
        public FileCollection getLinkFiles() {
            return binary.getLinkFiles();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/psiDeclarationProvider/FirStandaloneNormalAnalysisLibraryBinaryDecompiledModulePsiDeclarationProviderTestGenerated.java

      }
    
      @Test
      @TestMetadata("jvmNameOnGetter.kt")
      public void testJvmNameOnGetter() {
        runTest("analysis/analysis-api/testData/standalone/binary/jvmNameOnGetter.kt");
      }
    
      @Test
      @TestMetadata("jvmNameOnSetter.kt")
      public void testJvmNameOnSetter() {
        runTest("analysis/analysis-api/testData/standalone/binary/jvmNameOnSetter.kt");
      }
    
      @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 10:23:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftBinary.java

    /**
     * A binary built from Swift source and linked from the resulting object files.
     *
     * @since 4.2
     */
    public interface SwiftBinary extends ComponentWithObjectFiles, ComponentWithDependencies {
        /**
         * Returns the name of the Swift module that this binary defines.
         */
        Provider<String> getModule();
    
        /**
         * Returns true if this binary has testing enabled.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/rc/plugins/internal/WindowsResourcesCompileTaskConfig.java

        @Override
        public void configureTask(Task task, BinarySpec binary, LanguageSourceSet sourceSet, ServiceRegistry serviceRegistry) {
            configureResourceCompileTask((WindowsResourceCompile) task, (NativeBinarySpecInternal) binary, (WindowsResourceSet) sourceSet);
        }
    
        private void configureResourceCompileTask(WindowsResourceCompile task, final NativeBinarySpecInternal binary, final WindowsResourceSet sourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         */
        List<File> getFrameworkSearchPaths();
    
        /**
         * Returns the system search paths for this binary.
         */
        List<File> getSystemHeaderSearchPaths();
    
        /**
         * Returns the user search paths for this binary. This includes the header directories for the binary itself, plus any dependencies of the binary.
         */
        List<File> getUserHeaderSearchPaths();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

        private final NativeBinarySpecInternal binary;
    
        public NativeSpecVisualStudioTargetBinary(NativeBinarySpec binary) {
            this.binary = (NativeBinarySpecInternal) binary;
        }
    
        @Override
        public String getProjectPath() {
            return binary.getProjectPath();
        }
    
        @Override
        public String getComponentName() {
            return binary.getComponent().getName();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/AbstractBinaryRenderer.java

        }
    
        @Override
        public void render(BinarySpec binary, TextReportBuilder builder) {
            String heading = StringUtils.capitalize(binary.getDisplayName());
            if (!binary.isBuildable()) {
                heading += " (not buildable)";
            }
            builder.heading(heading);
    
            if (binary.getBuildTask() != null) {
                builder.item("build using task", binary.getBuildTask().getPath());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top