Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Alignment (0.12 sec)

  1. doc/next/5-toolchain.md

    a cost of an additional 0.1% text and binary size.  This is currently only implemented
    on 386 and amd64 because it has not shown an improvement on other platforms.
    Hot block alignment can be disabled with `-gcflags=[<packages>=]-d=alignhot=0`
    
    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	// these symbols at the beginning of their respective section if there
    	// aren't real symbols, their alignment might not match the
    	// first symbol alignment. Therefore, there are explicitly put at the
    	// beginning of their section with the same alignment.
    	if !(ctxt.DynlinkingGo() && ctxt.HeadType == objabi.Hdarwin) && !(ctxt.HeadType == objabi.Haix && ctxt.LinkMode == LinkExternal) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

                    "The highest version was selected in order to stabilize selection.\n" +
                    "Features available in a stable graph like version alignment are not guaranteed in this case.", id);
            }
            boolean newSelectedIsProject = false;
            if (conflictResolution == ConflictResolution.preferProjectModules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/sync/atomic/doc.go

    //
    // On non-Linux ARM, the 64-bit functions use instructions unavailable before the ARMv6k core.
    //
    // On ARM, 386, and 32-bit MIPS, it is the caller's responsibility to arrange
    // for 64-bit alignment of 64-bit words accessed atomically via the primitive
    // atomic functions (types [Int64] and [Uint64] are automatically aligned).
    // The first word in an allocated struct, array, or slice; in a global
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          result.Append(std::move(pad));
        }
        if (custom_option_alignment_.has_value()) {
          {
            auto alignment = custom_option_alignment_.value();
            std::string pad(alignment - result.size() % alignment, '\0');
            result.Append(std::move(pad));
          }
        }
        auto buffer = std::string(it.second.begin(), it.second.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // {sub} the subdiagonal alignment. "LEFT" means rows will be padded to the
        // left, "RIGHT" means rows will be padded ot the right.  The default is
        // "RIGHT_LEFT".
        StringRef align = op->getAttrOfType<StringAttr>("align").getValue();
        enum Alignment { kLeft, kRight };
    
        // default is RIGHT_LEFT
        Alignment superdiagonal_align = kRight;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. cmd/xl-storage-disk-id-check.go

    	totalErrsAvailability atomic.Uint64 // Captures all data availability errors such as faulty disk, timeout errors.
    	totalErrsTimeout      atomic.Uint64 // Captures all timeout only errors
    
    	// apiCalls should be placed first so alignment is guaranteed for atomic operations.
    	apiCalls     [storageMetricLast]uint64
    	apiLatencies [storageMetricLast]*lockedLastMinuteLatency
    	diskID       atomic.Pointer[string]
    	storage      *xlStorage
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	var inlMarksByPos map[src.XPos][]*obj.Prog
    
    	var argLiveIdx int = -1 // argument liveness info index
    
    	// These control cache line alignment; if the required portion of
    	// a cache line is not available, then pad to obtain cache line
    	// alignment.  Not implemented on all architectures, may not be
    	// useful on all architectures.
    	var hotAlign, hotRequire int64
    
    	if base.Debug.AlignHot > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. cmd/iam.go

    	inheritedPolicyType = "inherited-policy"
    )
    
    const (
    	maxSVCSessionPolicySize = 4096
    )
    
    // IAMSys - config system.
    type IAMSys struct {
    	// Need to keep them here to keep alignment - ref: https://golang.org/pkg/sync/atomic/#pkg-note-BUG
    	// metrics
    	LastRefreshTimeUnixNano         uint64
    	LastRefreshDurationMilliseconds uint64
    	TotalRefreshSuccesses           uint64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

                    (MOVHstore [4] dst (MOVHZload [4] src mem)
                            (MOVWstore dst (MOVWZload src mem) mem)))
    
    // Large move uses a loop. Since the address is computed and the
    // offset is zero, any alignment can be used.
    (Move [s] dst src mem) && s > 8 && buildcfg.GOPPC64 <= 8 && logLargeCopy(v, s) =>
            (LoweredMove [s] dst src mem)
    (Move [s] dst src mem) && s > 8 && s <= 64 && buildcfg.GOPPC64 >= 9 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top