Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 860 for Binary (0.16 sec)

  1. src/internal/trace/batch.go

    	// for the batch.
    	gen, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch gen: %w", err)
    	}
    	m, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch M ID: %w", err)
    	}
    	ts, err := binary.ReadUvarint(r)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      // Move binary op before reshape: reshape -> binary => binary -> reshape.
      // This is valid only when the binary operand is constant and the shape is the
      // tail of the other operand and the intermediate result isn't used by other
      // ops.
      // $rhs is required to be the tail shape of $lhs, so after transformation the
      // shape of the binary op result is valid. For example, assume the shapes of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    |5
    |Java
    |Binary plugin
    |an abstract class that implements the `apply(Project project)` method of the `Plugin<Project>` interface in Java.
    |Yes
    
    |6
    |Kotlin / Kotlin DSL
    |Binary plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/internal/xcoff/ar.go

    	default:
    		return nil, fmt.Errorf("unrecognised archive magic: 0x%x", magic)
    	}
    
    	var fhdr bigarFileHeader
    	if _, err := sr.Seek(0, io.SeekStart); err != nil {
    		return nil, err
    	}
    	if err := binary.Read(sr, binary.BigEndian, &fhdr); err != nil {
    		return nil, err
    	}
    
    	off, err := parseDecimalBytes(fhdr.Flfstmoff[:])
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/buildid.go

    // for the final link of the gofmt binary and comparing it against the
    // already-installed gofmt binary. But computing the action ID for the link
    // means knowing the content ID of main.a, which we did not keep.
    // To sidestep this problem, each binary actually stores an expanded build ID:
    //
    //	actionID(binary)/actionID(main.a)/contentID(main.a)/contentID(binary)
    //
    // (Note that this can be viewed equivalently as:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    	}
    	w.Flush()
    	return nil
    }
    
    func encodedSize(e *raw.Event) int {
    	size := 1
    	var buf [binary.MaxVarintLen64]byte
    	for _, arg := range e.Args {
    		size += binary.PutUvarint(buf[:], arg)
    	}
    	spec := e.Version.Specs()[e.Ev]
    	if spec.HasData {
    		size += binary.PutUvarint(buf[:], uint64(len(e.Data)))
    		size += len(e.Data)
    	}
    	return size
    }
    
    type countingReader struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/BinaryTasksModelRuleExtractor.java

                inputsWithBinary.add(InstanceModelView.of(getSubject().getPath(), getSubject().getType(), binary));
    
                invoke(invoker, inputsWithBinary, cast, binary, binary);
            }
        }
    
        private static class ExtractedBinaryTasksRule<T extends BinarySpec>  extends AbstractExtractedModelRule {
            private final ModelType<T> binaryType;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/math/unsafe.go

    //
    //go:linkname Float32bits
    
    // Float32bits returns the IEEE 754 binary representation of f,
    // with the sign bit of f and the result in the same bit position.
    // Float32bits(Float32frombits(x)) == x.
    func Float32bits(f float32) uint32 { return *(*uint32)(unsafe.Pointer(&f)) }
    
    // Float32frombits returns the floating-point number corresponding
    // to the IEEE 754 binary representation b, with the sign bit of b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* f = Unary(d, b1.opts().WithName("F").WithAttr("_encapsulate", "F1"));
        Node* g = Unary(f, b1.opts()
                               .WithName("G")
                               .WithAttr("_encapsulate", "F1")
                               .WithAttr("_outside", "O2")
                               .WithControlInput(e));
        Node* h = Unary(g, b1.opts().WithName("H").WithAttr("_encapsulate", "F1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
Back to top