Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for alignof (0.18 sec)

  1. src/cmd/trace/tasks.go

    }
    table#reqs tr.first {
      font-weight: bold;
    }
    table#reqs td {
      font-family: monospace;
    }
    table#reqs td.when {
      text-align: right;
      white-space: nowrap;
    }
    table#reqs td.elapsed {
      padding: 0 0.5em;
      text-align: right;
      white-space: pre;
      width: 10em;
    }
    address {
      font-size: smaller;
      margin-top: 5em;
    }
    </style>
    <body>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. docs/en/overrides/main.html

            </span> Subscribe to the <strong>FastAPI and friends</strong> newsletter 🎉
          </a>
        </div>
        <div class="item">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/footer.html

            }
            return currentChapterFileName;
        }
    
        // The media query indicating that a device is a desktop.
        // The `min-width: 64rem` definition should be aligned to
        // the one of `css/manual.css`.
        const desktopMediaQuery = window.matchMedia("screen and (min-width: 64rem)");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/envoyfilter.go

    	Priority         int32
    	creationTime     time.Time
    }
    
    // EnvoyFilterConfigPatchWrapper is a wrapper over the EnvoyFilter ConfigPatch api object
    // fields are ordered such that this struct is aligned
    type EnvoyFilterConfigPatchWrapper struct {
    	Value     proto.Message
    	Match     *networking.EnvoyFilter_EnvoyConfigObjectMatch
    	ApplyTo   networking.EnvoyFilter_ApplyTo
    	Operation networking.EnvoyFilter_Patch_Operation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/runtime/export_test.go

    			n++
    		}
    		unlock(&mheap_.lock)
    	})
    	return n
    }
    
    func UserArenaClone[T any](s T) T {
    	return arena_heapify(s).(T)
    }
    
    var AlignUp = alignUp
    
    func BlockUntilEmptyFinalizerQueue(timeout int64) bool {
    	return blockUntilEmptyFinalizerQueue(timeout)
    }
    
    func FrameStartLine(f *Frame) int {
    	return f.startLine
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/util.go

    	}
    	return 0
    }
    
    // requireAlignment ensures that the function is aligned enough to support
    // the required code alignment
    func requireAlignment(a int64, ctxt *Link, cursym *LSym) {
    	// TODO remove explicit knowledge about AIX.
    	if ctxt.Headtype != objabi.Haix && cursym.Func().Align < int32(a) {
    		cursym.Func().Align = int32(a)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/cmd/trace/regions.go

      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .details tr:hover {
      background-color: #f2f2f2;
    }
    .details td {
      text-align: right;
      border: 1px solid #000;
    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    }
    .stacked-bar-graph span {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/pgen.go

    		fmt.Fprintf(os.Stderr, "=-= sorted DCL for %v:\n", fn)
    		for i, v := range fn.Dcl {
    			if !ssa.IsMergeCandidate(v) {
    				continue
    			}
    			fmt.Fprintf(os.Stderr, " %d: %q isleader=%v subsumed=%v used=%v sz=%d align=%d t=%s\n", i, v.Sym().Name, mls.IsLeader(v), mls.Subsumed(v), v.Used(), v.Type().Size(), v.Type().Alignment(), v.Type().String())
    		}
    	}
    
    	// Reassign stack offsets of the locals that are used.
    	lastHasPtr := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      // break our currently guaranteed correctness.
      // For context, we are very conservative here compared to
      // `auto_control_deps.py` where it is assumed that allocated resource values
      // NEVER alias. We should align our assumptions in the future.
      static constexpr int64_t kUnknownResourceId = -1;
      static constexpr int64_t kInvalidResourceId = -2;
      static constexpr int64_t kMaxResourceTypeId = 9999;
    };
    
    }  // namespace detail
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. JavadocStyleGuide.md

    Some HTML element types allow authors to omit end tags: `<p>` and `<li>`.
    
    ### 1.1.3 Paragraphs
    
    One blank line—that is, a line containing only the aligned leading asterisk (`*`)—appears between the last paragraph and before the group of block tags if present:
    
    ```java
    /**
     * that draw the image will incrementally paint on the screen.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top