Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,094 for Binary1 (0.12 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. test/fixedbugs/issue44823.go

    // license that can be found in the LICENSE file.
    
    // Issue 44823: miscompilation with store combining.
    
    package main
    
    import "encoding/binary"
    
    //go:noinline
    func Id(a [8]byte) (x [8]byte) {
    	binary.LittleEndian.PutUint64(x[:], binary.LittleEndian.Uint64(a[:]))
    	return
    }
    
    var a = [8]byte{1, 2, 3, 4, 5, 6, 7, 8}
    
    func main() {
    	x := Id(a)
    	if x != a {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 05 22:14:48 UTC 2021
    - 492 bytes
    - Viewed (0)
  7. test/fixedbugs/issue19201.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"encoding/binary"
    )
    
    var (
    	ch1 = make(chan int)
    	ch2 = make(chan int)
    
    	bin  = []byte("a\000\000\001")
    	want = binary.BigEndian.Uint32(bin)
    
    	c consumer = noopConsumer{}
    )
    
    type msg struct {
    	code uint32
    }
    
    type consumer interface {
    	consume(msg)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 19:07:23 UTC 2017
    - 765 bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/TestNativeBinariesFactory.java

                                                                                          NativePlatform platform, BuildType buildType, Flavor flavor) {
            T binary = BaseBinaryFixtures.create(publicType, implType, name, componentNode);
            NativeBinaries.initialize(binary, namingScheme, resolver, TestFiles.fileCollectionFactory(), platform, buildType, flavor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/BinaryProvider.java

    import org.gradle.api.Action;
    import org.gradle.api.provider.Provider;
    
    /**
     * Represents a binary that is created and configured as required.
     *
     * @since 4.5
     * @param <T> The type of binary.
     */
    public interface BinaryProvider<T> extends Provider<T> {
        /**
         * Registers an action to execute to configure the binary. The action is executed only when the element is required.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/debug/plan9obj/file.go

    	}
    
    	ph := new(prog)
    	if err := binary.Read(sr, binary.BigEndian, ph); err != nil {
    		return nil, err
    	}
    
    	f := &File{FileHeader: FileHeader{
    		Magic:       ph.Magic,
    		Bss:         ph.Bss,
    		Entry:       uint64(ph.Entry),
    		PtrSize:     4,
    		LoadAddress: 0x1000,
    		HdrSize:     4 * 8,
    	}}
    
    	if ph.Magic&Magic64 != 0 {
    		if err := binary.Read(sr, binary.BigEndian, &f.Entry); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top