Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for bigN (0.08 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    	width: 100%;
    	margin-bottom: 0;
    }
    
    .gist .file-data>table td.line-data {
    	width: 99%;
    }
    
    div.unbreakable {
    	page-break-inside: avoid;
    }
    
    .big {
    	font-size: larger;
    }
    
    .small {
    	font-size: smaller;
    }
    
    .underline {
    	text-decoration: underline;
    }
    
    .overline {
    	text-decoration: overline;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	entry := ((*[2]uintptr)(unsafe.Pointer(f)))[1]
    	preamp := ((*[4]uint32)(unsafe.Pointer(entry - eyecatcherOffset)))
    
    	offsetPpa1 := preamp[2]
    	if offsetPpa1 > 0x0ffff {
    		return "", fmt.Errorf("PPA1 offset seems too big 0x%x\n", offsetPpa1)
    	}
    
    	ppa1 := uintptr(unsafe.Pointer(preamp)) + uintptr(offsetPpa1)
    	res := ptrtest(ppa1)
    	if res != 0 {
    		return "", fmt.Errorf("PPA1 address not valid")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    See the `link:{groovyDslPath}/org.gradle.api.file.ProjectLayout.html[ProjectLayout]` interface for details.
    
    Note that, at this stage, Gradle will not print deprecation warnings if you still use `Project.buildDir`.
    We know this is a big change and want to give time for authors of major plugins to move away from its usage first.
    
    The switch from a `File` to a `DirectoryProperty` requires adaptations in build logic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    					x := e.p.NewValue1(c.Pos, OpStoreReg, c.Type, c)
    					// Allocate a temp location to spill a register to.
    					// The type of the slot is immaterial - it will not be live across
    					// any safepoint. Just use a type big enough to hold any register.
    					t := LocalSlot{N: e.s.f.NewLocal(c.Pos, types.Int64), Type: types.Int64}
    					// TODO: reuse these slots. They'll need to be erased first.
    					e.set(t, vid, x, false, c.Pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top