Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,104 for Binary (0.18 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTasksModelRuleExtractorTest.groovy

            static String returnValue(ModelMap<Task> builder, SomeBinarySpec binary) {
            }
    
            @BinaryTasks
            static void noParams() {
            }
    
            @BinaryTasks
            static void wrongSubject(BinarySpec binary, String input) {
            }
    
            @BinaryTasks
            static void rawModelMap(ModelMap tasks, SomeBinarySpec binary) {
            }
    
            @BinaryTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                    task.dependsOn(binary.getInstallDirectory());
                    // TODO: Honor changes to build directory
                    task.setOutputDir(project.getLayout().getBuildDirectory().dir("test-results/" + binary.getNames().getDirName()).get().getAsFile());
                });
                binary.getRunTask().set(testTask);
    
                configureTestSuiteWithTestedComponentWhenAvailable(project, testComponent, binary);
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/TypeAwareBinaryRendererTest.groovy

        def "delegates to renderer for type"() {
            def binary = Stub(SomeBinary)
            def output = Stub(TextReportBuilder)
            def renderer = new TypeAwareBinaryRenderer()
            def binRenderer = Mock(AbstractBinaryRenderer)
    
            given:
            binRenderer.targetType >> binary.getClass()
            renderer.register(binRenderer)
    
            when:
            renderer.render(binary, output)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 26 02:58:27 UTC 2015
    - 2.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/kotlin/build.gradle.kts

            (repository == publishing.repositories["external"] &&
                publication == publishing.publications["binary"]) ||
            (repository == publishing.repositories["internal"] &&
                publication == publishing.publications["binaryAndSources"])
        }
        onlyIf("publishing binary to the external repository, or binary and sources to the internal one") {
            predicate.get()
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinaryTasksCollection.java

    /**
     * A collection of tasks associated to a binary
     */
    @Incubating
    @UnmanagedStruct
    public interface BinaryTasksCollection extends DomainObjectSet<Task> {
        /**
         * Generates a name for a task that performs some action on the binary.
         */
        String taskName(String verb);
    
        /**
         * Generates a name for a task that performs some action on the binary.
         */
        String taskName(String verb, String object);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    below.
    
    For each component, Gradle defines one or more _binaries_ as output. To build a binary, Gradle will take the source files defined for the component, compile them as appropriate for the source language, and link the result into a binary file. For an executable component, Gradle can produce executable binary files. For a library component, Gradle can produce both static and shared library binary files. For example, when you define a library called `helloworld` and build on Linux, Gradle...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/markdown/MarkdownPlugin.groovy

        @BinaryTasks
        void processMarkdownDocumentation(ModelMap<Task> tasks, final DocumentationBinary binary) {
            binary.inputs.withType(MarkdownSourceSet) { markdownSourceSet ->
                def taskName = binary.tasks.taskName("compile", markdownSourceSet.name)
                def outputDir = new File(binary.outputDir, markdownSourceSet.name)
                tasks.create(taskName, MarkdownHtmlCompile) { compileTask ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinary.java

    import org.gradle.api.Incubating;
    import org.gradle.platform.base.Binary;
    import org.gradle.nativeplatform.platform.NativePlatform;
    
    /**
     * Represents a particular binary artifact.
     */
    @Incubating
    public interface NativeBinary extends Binary {
        /**
         * The {@link org.gradle.nativeplatform.Flavor} that this binary was built with.
         */
        Flavor getFlavor();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeDependentBinariesResolutionStrategy.java

            private final Map<NativeBinarySpecInternal, List<NativeBinarySpecInternal>> dependents = new HashMap<>();
    
            void registerBinary(NativeBinarySpecInternal binary) {
                if (dependencies.get(binary) == null) {
                    dependencies.put(binary, new LinkedHashSet<>());
                }
            }
    
            List<NativeBinarySpecInternal> getDependents(NativeBinarySpecInternal target) {
    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. src/cmd/internal/notsha256/sha256.go

    	}
    
    	// Length in bits.
    	len <<= 3
    	binary.BigEndian.PutUint64(tmp[:], len)
    	d.Write(tmp[0:8])
    
    	if d.nx != 0 {
    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    
    	binary.BigEndian.PutUint32(digest[0:], d.h[0]^0xFFFFFFFF)
    	binary.BigEndian.PutUint32(digest[4:], d.h[1]^0xFFFFFFFF)
    	binary.BigEndian.PutUint32(digest[8:], d.h[2]^0xFFFFFFFF)
    	binary.BigEndian.PutUint32(digest[12:], d.h[3]^0xFFFFFFFF)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:17 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top