Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 228 for alignUp (2.23 sec)

  1. .teamcity/src/main/kotlin/common/extensions.kt

        """-PcommitId=%dep.$dependencyBuildId.build.vcs.number% $extraParameters "-PgitUserName=$gitUserName" "-PgitUserEmail=$gitUserEmail" $pluginPortalUrlOverride %additional.gradle.parameters%"""
    
    /**
     * Align with build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
     */
    enum class KillProcessMode {
        KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS,
        KILL_PROCESSES_STARTED_BY_GRADLE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  2. tensorflow/compiler/aot/codegen.cc

    //
    // The logical function signature is:
    //   {{PROGRAM_SHAPE}}
    //
    // Memory stats:
    //   arg bytes total:    {{ARG_BYTES_TOTAL}}
    //   arg bytes aligned:  {{ARG_BYTES_ALIGNED}}
    //   temp bytes total:   {{TEMP_BYTES_TOTAL}}
    //   temp bytes aligned: {{TEMP_BYTES_ALIGNED}}
    class {{CLASS}} final : public tensorflow::XlaCompiledCpuFunction {
     public:
      // Number of input arguments for the compiled computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    				Filesz: uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Filesz):])),
    				Memsz:  uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Memsz):])),
    				Align:  uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Align):])),
    			}
    		case ELFCLASS64:
    			var ph Prog64
    			p.ProgHeader = ProgHeader{
    				Type:   ProgType(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Type):])),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

                              IsRankZeroAttr, HasValueZero]>,
                         "MatrixSetDiag attribute verification">;
    
    // Attribute align doesn't matter when k is zero.
    def LegalizeMatrixSetDiag : Pat<
      (TF_MatrixSetDiagV3Op $input, $diagonal,
        (ConstantLikeMatcher IsSupportedByTFLiteMatrixSetDiag:$k), $align),
      (TFL_MatrixSetDiagOp $input, $diagonal)>;
    
    def LegalizeScatterNd : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	compressedSects, compressedBytes, err := machoCompressSections(ctxt, dwarfm)
    	if err != nil {
    		return err
    	}
    
    	// Now copy the dwarf data into the output.
    	// Kernel requires all loaded segments to be page-aligned in the file,
    	// even though we mark this one as being 0 bytes of virtual address space.
    	dwarfstart := Rnd(int64(linkseg.Offset), *FlagRound)
    	if _, err := outf.Seek(dwarfstart, 0); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/symtab.go

    			ldr.SetAttrNotInSymbolTable(s, true)
    			symGroupType[s] = sym.SGOFUNC
    			ldr.SetCarrierSym(s, symgofunc)
    			if ctxt.Debugvlog != 0 {
    				align := ldr.SymAlign(s)
    				liveness += (ldr.SymSize(s) + int64(align) - 1) &^ (int64(align) - 1)
    			}
    
    		// Note: Check for "type:" prefix after checking for .arginfo1 suffix.
    		// That way symbols like "type:.eq.[2]interface {}.arginfo1" that belong
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  7. src/cmd/internal/archive/archive.go

    		// We only care about name, size, and magic, unless in verbose mode.
    		// The fields are space-padded on the right.
    		// The size is in decimal.
    		// The file data - size bytes - follows the header.
    		// Headers are 2-byte aligned, so if size is odd, an extra padding
    		// byte sits between the file data and the next header.
    		// The file data that follows is padded to an even number of bytes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                        div().id("heading" + index).classAttr("card-header");
                            div().classAttr("row align-items-center data-row").attr("scenario", String.valueOf(index));
                                div().classAttr("col").text(String.valueOf(index)).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/runtime/asm_mips64x.s

    // func asmcgocall_no_g(fn, arg unsafe.Pointer)
    // Call fn(arg) aligned appropriately for the gcc ABI.
    // Called on a system stack, and there may be no g yet (during needm).
    TEXT ·asmcgocall_no_g(SB),NOSPLIT,$0-16
    	MOVV	fn+0(FP), R25
    	MOVV	arg+8(FP), R4
    	JAL	(R25)
    	RET
    
    // func asmcgocall(fn, arg unsafe.Pointer) int32
    // Call fn(arg) on the scheduler stack,
    // aligned appropriately for the gcc ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. src/archive/tar/common.go

    		}
    		pre = cur
    	}
    	return true
    }
    
    // alignSparseEntries mutates src and returns dst where each fragment's
    // starting offset is aligned up to the nearest block edge, and each
    // ending offset is aligned down to the nearest block edge.
    //
    // Even though the Go tar Reader and the BSD tar utility can handle entries
    // with arbitrary offsets and lengths, the GNU tar utility can only handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top