Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,121 for below (0.03 sec)

  1. src/internal/types/testdata/check/constdecl.go

    const A /* ERROR "initialization cycle" */ = unsafe.Sizeof(func() { _ = A })
    
    func _() {
    	// The function literal below must not see a.
    	const a = unsafe.Sizeof(func() { _ = a /* ERROR "undefined" */ })
    	const b = unsafe.Sizeof(func() { _ = a })
    
    	// The function literal below must not see x, y, or z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. hack/verify-vendor.sh

        echo "Your go.mod file is different:" >&2
        echo "${_out}" >&2
        echo "Vendor Verify failed." >&2
        echo "If you're seeing this locally, run the below command to fix your go.mod:" >&2
        echo "hack/update-vendor.sh" >&2
        ret=1
      fi
    
      if ! _out="$(diff -Naupr -x "AUTHORS*" -x "CONTRIBUTORS*" vendor "${_kubetmp}/vendor")"; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais.go

    	freq = freq_8_32(text, freq, bucket)
    	freq = freq[:256]     // establish len(freq) = 256, so 0 ≤ i < 256 below
    	bucket = bucket[:256] // eliminate bounds check for bucket[i] below
    	total := int32(0)
    	for i, n := range freq {
    		bucket[i] = total
    		total += n
    	}
    }
    
    // bucketMax_8_32 stores into bucket[c] the maximum index
    // in the bucket for character c in a bucket-sort of text.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. src/reflect/asm_ppc64x.s

    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    #include "funcdata.h"
    #include "asm_ppc64x.h"
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    // for it on the stack. The purpose of this word is so that the runtime knows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.library-conventions.gradle.kts

        repositories {
            maven {
                name = "myOrgPrivateRepo"
                url = uri("build/my-repo")
            }
        }
    }
    
    // The project requires libraries to have a README containing sections configured below
    // tag::use-java-class[]
    val readmeCheck by tasks.registering(com.example.ReadmeVerificationTask::class) {
        readme = layout.projectDirectory.file("README.md")
        readmePatterns = listOf("^## API$", "^## Changelog$")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 996 bytes
    - Viewed (0)
  6. test/fixedbugs/bug099.go

    type I interface { F() int }
    
    // Implements interface
    type S struct { }
    func (s *S) F() int { return 1 }
    
    // Allocates S but returns I
    // Arg is unused but important:
    // if you take it out (and the 0s below)
    // then the bug goes away.
    func NewI(i int) I {
    	return new(S)
    }
    
    // Uses interface method.
    func Use(x I) {
    	x.F()
    }
    
    func main() {
    	i := NewI(0);
    	Use(i);
    
    	// Again, without temporary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 637 bytes
    - Viewed (0)
  7. test/fixedbugs/issue39459.go

    package p
    
    type T struct { // big enough to be an unSSAable type
    	a, b, c, d, e, f int
    }
    
    func f(x interface{}, p *int) {
    	_ = *p // trigger nil check here, removing it from below
    	switch x := x.(type) {
    	case *T:
    		// Zero twice, so one of them will be removed by the deadstore pass
    		*x = T{}
    		*p = 0 // store op to prevent Zero ops from being optimized by the earlier opt pass rewrite rules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 25 15:59:48 UTC 2020
    - 583 bytes
    - Viewed (0)
  8. src/runtime/defs_linux_amd64.go

    type sigactiont struct {
    	sa_handler  uintptr
    	sa_flags    uint64
    	sa_restorer uintptr
    	sa_mask     uint64
    }
    
    type siginfoFields struct {
    	si_signo int32
    	si_errno int32
    	si_code  int32
    	// below here is a union; si_addr is the only field we use
    	si_addr uint64
    }
    
    type siginfo struct {
    	siginfoFields
    
    	// Pad struct to the max size in the kernel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_cache_pgo.txt

    stderr 'preprofile.*default\.pgo'
    
    # ... building a different package should not run preprofile again, instead
    # using a profile from cache.
    #
    # Note we can't directly look for $GOCACHE in the regex below because the
    # Windows slashes would need to be escaped. Instead just look for the "gocache"
    # component (specified above) as an approximation.
    go build -x -pgo=default.pgo lib2.go
    ! stderr 'preprofile.*default\.pgo'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 18:28:25 UTC 2024
    - 927 bytes
    - Viewed (0)
  10. src/image/ycbcr.go

    	r = r.Intersect(p.Rect)
    	// If r1 and r2 are Rectangles, r1.Intersect(r2) is not guaranteed to be inside
    	// either r1 or r2 if the intersection is empty. Without explicitly checking for
    	// this, the Pix[i:] expression below can panic.
    	if r.Empty() {
    		return &YCbCr{
    			SubsampleRatio: p.SubsampleRatio,
    		}
    	}
    	yi := p.YOffset(r.Min.X, r.Min.Y)
    	ci := p.COffset(r.Min.X, r.Min.Y)
    	return &YCbCr{
    		Y:              p.Y[yi:],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top