Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 88 for Boundary (0.55 sec)

  1. src/cmd/internal/goobj/funcinfo.go

    		binary.LittleEndian.PutUint32(b[:], x)
    		w.Write(b[:])
    	}
    
    	writeUint32(a.Args)
    	writeUint32(a.Locals)
    	writeUint8(uint8(a.FuncID))
    	writeUint8(uint8(a.FuncFlag))
    	writeUint8(0) // pad to uint32 boundary
    	writeUint8(0)
    	writeUint32(uint32(a.StartLine))
    
    	writeUint32(uint32(len(a.File)))
    	for _, f := range a.File {
    		writeUint32(uint32(f))
    	}
    	writeUint32(uint32(len(a.InlTree)))
    	for i := range a.InlTree {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/internal/bytealg/equal_amd64.s

    	CMPQ	CX, DX
    	SETEQ	AX
    	RET
    
    small:
    	CMPQ	BX, $0
    	JEQ	equal
    
    	LEAQ	0(BX*8), CX
    	NEGQ	CX
    
    	CMPB	SI, $0xf8
    	JA	si_high
    
    	// load at SI won't cross a page boundary.
    	MOVQ	(SI), SI
    	JMP	si_finish
    si_high:
    	// address ends in 11111xxx. Load up to bytes we want, move to correct position.
    	MOVQ	-8(SI)(BX*1), SI
    	SHRQ	CX, SI
    si_finish:
    
    	// same for DI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:34:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. docs/minio-limits.md

    | Maximum number of versions per object                                           | 10000 (can be configured to higher values but we do not recommend beyond 10000) |
    
    > NOTE:  While MinIO does not implement an upper boundary on buckets, your cluster's hardware has natural limits that depend on the workload and its scaling patterns. We strongly recommend [MinIO SUBNET](https://min.io/pricing) for architecture and sizing guidance for your production use case.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/os/env_test.go

    			// TODO(#49886): Should we consume only the first leading "=" as part
    			// of the key, or parse through arbitrarily many of them until a non-=,
    			// or try each possible key/value boundary until LookupEnv succeeds?
    			i = strings.Index(kv[1:], "=") + 1
    		}
    		if i < 0 {
    			t.Errorf("Environ entry missing '=': %q", kv)
    		}
    
    		k := kv[:i]
    		v := kv[i+1:]
    		v2, ok := LookupEnv(k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

        }
    
        System_Ext(ideKotlin, "IntelliJ Kotlin Plugin", "for IDEA or Android Studio")
    
        Rel(editor, ideKotlin, "Uses")
        Rel(ideKotlin, providerScriptTemplates, "Selects", "by file extension")
    }
    
    Boundary(kotlinTools, "Kotlin Toolchain") {
    
        System_Ext(kotlinc, "Kotlin Compiler", "kotlinc")
        System_Ext(kgp, "Kotlin Gradle Plugin", "The `org.jetbrains.kotlin.jvm` Gradle plugin")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

                if (startPos == -1) {
                    // No user code in the stack
                    return null;
                }
                // Treat Gradle code as the boundary to allow stepping over JDK and Groovy calls
                endPos = failure.indexOfStackFrame(startPos + 1, GRADLE_CODE);
                if (endPos == -1) {
                    endPos = stack.size();
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/util/removeall/removeall.go

    // using the provided remove function. It removes everything it can but returns
    // the first error it encounters. If the path does not exist, RemoveAll
    // returns nil (no error).
    // It makes sure it does not cross mount boundary, i.e. it does *not* remove
    // files from another filesystems. Like 'rm -rf --one-file-system'.
    // It is copied from RemoveAll() sources, with IsLikelyNotMountPoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/doc.go

    	SCVTFWS R3, F16                   <=>      scvtf s17, w6
    
    6. Align directive
    
    Go asm supports the PCALIGN directive, which indicates that the next instruction should be aligned
    to a specified boundary by padding with NOOP instruction. The alignment value supported on arm64
    must be a power of 2 and in the range of [8, 2048].
    
    Examples:
    
    	PCALIGN $16
    	MOVD $2, R0          // This instruction is aligned with 16 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/deadcode.go

    	pendingLines.clear()
    
    	// Unlink values and conserve statement boundaries
    	for i, b := range f.Blocks {
    		if !reachable[b.ID] {
    			// TODO what if control is statement boundary? Too late here.
    			b.ResetControls()
    		}
    		for _, v := range b.Values {
    			if !live[v.ID] {
    				v.resetArgs()
    				if v.Pos.IsStmt() == src.PosIsStmt && reachable[b.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. src/math/exp.go

    	)
    
    	r := hi - lo
    	t := r * r
    	c := r - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))))
    	y := 1 - ((lo - (r*c)/(2-c)) - hi)
    	// TODO(rsc): make sure Ldexp can handle boundary k
    	return Ldexp(y, k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top