Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 323 for seem (0.04 sec)

  1. src/cmd/dist/build.go

    // These require -force flag to build, and also
    // get filtered out of cgoEnabled for 'dist list'.
    // See go.dev/issue/56679.
    var broken = map[string]bool{
    	"linux/sparc64":  true, // An incomplete port. See CL 132155.
    	"openbsd/mips64": true, // Broken: go.dev/issue/58110.
    }
    
    // List of platforms which are first class ports. See go.dev/issue/38874.
    var firstClass = map[string]bool{
    	"darwin/amd64":  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    	}
    	return
    }
    
    var libc_rmdir_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_rmdir rmdir "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
    	r0, _, e1 := syscall_syscall(libc_lseek_trampoline_addr, uintptr(fd), uintptr(offset), uintptr(whence))
    	newoffset = int64(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    	}
    	return
    }
    
    var libc_rmdir_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_rmdir rmdir "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
    	r0, _, e1 := syscall_syscall(libc_lseek_trampoline_addr, uintptr(fd), uintptr(offset), uintptr(whence))
    	newoffset = int64(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/net/http/request.go

    		// address such as Unix domain socket path into a valid, ignored
    		// Host header (see https://go.dev/issue/61431).
    		//
    		// We don't preserve the truncation, because sending an altered
    		// header field opens a smuggling vector. Instead, zero out the
    		// Host header entirely if it isn't valid. (An empty Host is valid;
    		// see RFC 9112 Section 3.2.)
    		//
    		// Return an error if we're sending to a proxy, since the proxy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go

    	}
    	return
    }
    
    var libc_rmdir_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_rmdir rmdir "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
    	r0, _, e1 := syscall_syscall(libc_lseek_trampoline_addr, uintptr(fd), uintptr(offset), uintptr(whence))
    	newoffset = int64(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go

    	}
    	return
    }
    
    var libc_rmdir_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_rmdir rmdir "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
    	r0, _, e1 := syscall_syscall(libc_lseek_trampoline_addr, uintptr(fd), uintptr(offset), uintptr(whence))
    	newoffset = int64(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    
    NOTE: See link:{groovyDslPath}/org.gradle.api.reporting.dependents.DependentComponentsReport.html[DependentComponentsReport] API documentation for more details.
    
    By default, non-buildable binaries and test suites are hidden from the report. The `dependentComponents` task provides options that allow you to see all dependents by using the `--all` option:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    			// This state is tracked even if tracing isn't enabled.
    			// It's only used by the new tracer.
    			// See the comment on enteredMarkAssistForTracing.
    			gp.inMarkAssist = false
    		}
    	}
    }
    
    // gcAssistAlloc1 is the part of gcAssistAlloc that runs on the system
    // stack. This is a separate function to make it easier to see that
    // we're not capturing anything from the user stack, since the user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/runtime/map.go

    	flags     uint8
    	B         uint8  // log_2 of # of buckets (can hold up to loadFactor * 2^B items)
    	noverflow uint16 // approximate number of overflow buckets; see incrnoverflow for details
    	hash0     uint32 // hash seed
    
    	buckets    unsafe.Pointer // array of 2^B Buckets. may be nil if count==0.
    	oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider_test.go

    		}
    		containerStats.Memory = &runtimeapi.MemoryUsage{
    			Timestamp:       timestamp.UnixNano(),
    			WorkingSetBytes: &runtimeapi.UInt64Value{Value: uint64(seed + offsetCRI + offsetMemWorkingSetBytes)},
    		}
    	}
    	return containerStats
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top