Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 860 for Binary (0.16 sec)

  1. src/mime/quotedprintable/writer.go

    package quotedprintable
    
    import "io"
    
    const lineMaxLen = 76
    
    // A Writer is a quoted-printable writer that implements [io.WriteCloser].
    type Writer struct {
    	// Binary mode treats the writer's input as pure binary and processes end of
    	// line bytes as binary data.
    	Binary bool
    
    	w    io.Writer
    	i    int
    	line [78]byte
    	cr   bool
    }
    
    // NewWriter returns a new [Writer] that writes to w.
    func NewWriter(w io.Writer) *Writer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginConfigurationException.java

            super(originalMessage, cause);
            this.pluginDescriptor = pluginDescriptor;
            this.originalMessage = originalMessage;
        }
    
        /**
         * Ctor left for binary compatibility.
         *
         * @deprecated Use {@link #PluginConfigurationException(PluginDescriptor, String, Throwable)}
         */
        @Deprecated
        public PluginConfigurationException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/index/suffixarray/suffixarray.go

    func writeInt(w io.Writer, buf []byte, x int) error {
    	binary.PutVarint(buf, int64(x))
    	_, err := w.Write(buf[0:binary.MaxVarintLen64])
    	return err
    }
    
    // readInt reads an int x from r using buf to buffer the read and returns x.
    func readInt(r io.Reader, buf []byte) (int64, error) {
    	_, err := io.ReadFull(r, buf[0:binary.MaxVarintLen64]) // ok to continue with error
    	x, _ := binary.Varint(buf)
    	return x, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    )
    
    // initialize loads the 256-bit key into the two 128-bit secret values r and s.
    func initialize(key *[32]byte, m *macState) {
    	m.r[0] = binary.LittleEndian.Uint64(key[0:8]) & rMask0
    	m.r[1] = binary.LittleEndian.Uint64(key[8:16]) & rMask1
    	m.s[0] = binary.LittleEndian.Uint64(key[16:24])
    	m.s[1] = binary.LittleEndian.Uint64(key[24:32])
    }
    
    // uint128 holds a 128-bit number as two 64-bit limbs, for use with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                .withArguments(":binary-compatibility:checkBinaryCompatibility", "-s")
    
            val (buildResult, failure) = try {
                runner.build()!! to null
            } catch (ex: UnexpectedBuildFailure) {
                ex.buildResult!! to ex
            }
    
            println(buildResult.output)
    
            val richReportFile = inputBuildDir.resolve("binary-compatibility/build/japi/japi.html").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	var parsedVer *utilversion.Version
    	var isNft bool
    	// does the "xx-save" binary exist?
    	rulesDump, binExistsErr := exec.Command(iptablesSaveBin).CombinedOutput()
    	if binExistsErr != nil {
    		return IptablesVersion{}, fmt.Errorf("binary %s not found in path: %w", iptablesSaveBin, binExistsErr)
    	}
    
    	// Binary is there, so try to parse version
    	verCmd := exec.Command(iptablesSaveBin, "--version")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. test/fixedbugs/issue31747.go

    	_ = 0b111 // ERROR "binary literal requires go1.13 or later"
    	_ = 0o567 // ERROR "0o/0O-style octal literal requires go1.13 or later"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point literal requires go1.13 or later"
    
    	_ = 0b111 // ERROR "binary"
    	_ = 0o567 // ERROR "octal"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. build/pause/Makefile

    build: $(foreach binary, ${BIN}, bin/${binary}-${OS}-${ARCH})
    
    bin/${BIN.linux}-$(OS)-$(ARCH): $(SRCS)
    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		$(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \
    		/bin/bash -c "\
    			cd /build && \
    			$(TRIPLE)-gcc $(CFLAGS) -o $@ $^ && \
    			$(TRIPLE)-strip $(foreach binary, $@, ${binary}${EXTENSION})"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/hooks.go

    // MarkProfileEmitted to indicate that no more work needs to be
    // done. If however that call is never made, this is a sign that the
    // test binary is being used as a replacement binary for the tool
    // being tested, hence we do want to run exit hooks when the program
    // terminates.
    func InitHook(istest bool) {
    	// Note: hooks are run in reverse registration order, so
    	// register the counter data hook before the meta-data hook
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue65962.go

    func isI(x any) {
    	_ = x.(I)
    }
    
    func test1() {
    	defer func() { recover() }()
    	ld[bool]() // add <bool,I> itab to binary
    	_ = any(false).(I)
    }
    
    type B bool
    
    func (B) f() {
    }
    func (B) g() {
    }
    
    func test2() {
    	defer func() { recover() }()
    	ld[B]() // add <B,I> itab to binary
    	_ = any(B(false)).(I)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:30:40 UTC 2024
    - 625 bytes
    - Viewed (0)
Back to top