Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,725 for Binary (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/debug/macho/file.go

    	var ident [4]byte
    	if _, err := r.ReadAt(ident[0:], 0); err != nil {
    		return nil, err
    	}
    	be := binary.BigEndian.Uint32(ident[0:])
    	le := binary.LittleEndian.Uint32(ident[0:])
    	switch Magic32 &^ 1 {
    	case be &^ 1:
    		f.ByteOrder = binary.BigEndian
    		f.Magic = be
    	case le &^ 1:
    		f.ByteOrder = binary.LittleEndian
    		f.Magic = le
    	default:
    		return nil, &FormatError{0, "invalid magic number", nil}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream.go

    	"k8s.io/apimachinery/pkg/util/runtime"
    )
    
    // The WebSocket subprotocol "binary.k8s.io" will only send messages to the
    // client and ignore messages sent to the server. The received messages are
    // the exact bytes written to the stream. Zero byte messages are possible.
    const binaryWebSocketProtocol = "binary.k8s.io"
    
    // The WebSocket subprotocol "base64.binary.k8s.io" will only send messages to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/assembler/plugins/AssemblerPluginTest.groovy

                            }
                            binaries.all { NativeBinary binary ->
                                binary.assembler.args "ARG1", "ARG2"
                            }
                        }
                    }
                }
            }
    
            then:
            NativeExecutableBinarySpec binary = realizeBinaries().testExecutable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/debug/pe/file.go

    	var ida []ImportDirectory
    	for len(d) >= 20 {
    		var dt ImportDirectory
    		dt.OriginalFirstThunk = binary.LittleEndian.Uint32(d[0:4])
    		dt.TimeDateStamp = binary.LittleEndian.Uint32(d[4:8])
    		dt.ForwarderChain = binary.LittleEndian.Uint32(d[8:12])
    		dt.Name = binary.LittleEndian.Uint32(d[12:16])
    		dt.FirstThunk = binary.LittleEndian.Uint32(d[16:20])
    		d = d[20:]
    		if dt.OriginalFirstThunk == 0 {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ivy-publish/conditional-publishing/groovy/build.gradle

            if (repository == publishing.repositories.external)
                return publication == publishing.publications.binary
            if (repository == publishing.repositories.internal)
                return publication == publishing.publications.binaryAndSources
            return false
        }
        onlyIf("publishing binary to the external repository, or binary and sources to the internal one") {
            publishIf.get()
        }
    }
    // end::task-config[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-kotlinClosure/kotlin/build.gradle.kts

        fun takingBinaryClosure(closure: Closure<*>) =
            require(closure.call("foo", "bar") == "result from parameters foo and bar") { "binary closure" }
    }
    
    // tag::kotlinClosure[]
    somePlugin {
    
        // Adapt parameter-less function
        takingParameterLessClosure(KotlinClosure0({
            "result"
        }))
    
        // Adapt unary function
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top