Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 815 for Binary1 (0.98 sec)

  1. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    env GOPATH=
    env HOME=''
    env USERPROFILE=''
    env home=''
    
    # Relocated Executable
    # Since we built with -trimpath and the binary isn't installed in a
    # normal-looking GOROOT, this command should fail.
    
    ! exec $WORK/new/bin/go$GOEXE env GOROOT
    stderr '^go: cannot find GOROOT directory: ''go'' binary is trimmed and GOROOT is not set$'
    ! stderr 'GOPATH set to GOROOT'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* d =
            Binary(b, c, b1.opts().WithName("D").WithAttr("_encapsulate", "F1"));
        Node* e = Binary(c, d,
                         b1.opts()
                             .WithName("E")
                             .WithControlInputs({b, d})
                             .WithAttr("_encapsulate", "F1")
                             .WithAttr("_outside", "O1"));
        Node* f = Binary(c, e,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top