Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fixpoint (0.11 sec)

  1. src/runtime/runtime1.go

    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/goccy/json
    //   - github.com/modern-go/reflect2
    //   - github.com/vmware/govmomi
    //   - github.com/pinpoint-apm/pinpoint-go-agent
    //   - github.com/timandy/routine
    //   - github.com/v2pro/plz
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname reflect_typelinks reflect.typelinks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/os/file_unix.go

    	}
    	return nil
    }
    
    func readlink(name string) (string, error) {
    	for len := 128; ; len *= 2 {
    		b := make([]byte, len)
    		var (
    			n int
    			e error
    		)
    		for {
    			n, e = fixCount(syscall.Readlink(name, b))
    			if e != syscall.EINTR {
    				break
    			}
    		}
    		// buffer too small
    		if (runtime.GOOS == "aix" || runtime.GOOS == "wasip1") && e == syscall.ERANGE {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

                    // Writing with explicit trace helps to avoid attributing these failures to "Gradle runtime".
                    // TODO(mlopatkin): can we do even better and pinpoint the exact stacktrace in case of failure?
                    val trace = locationFor(null)
                    sink().write(ValueSource(obtainedValue.uncheckedCast()), trace)
                    reportUniqueValueSourceInput(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. src/reflect/type.go

    //
    // add should be an internal detail (and is trivially copyable),
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/pinpoint-apm/pinpoint-go-agent
    //   - github.com/vmware/govmomi
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname add
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    func ValidateContainerUpdates(newContainers, oldContainers []core.Container, fldPath *field.Path) (allErrs field.ErrorList, stop bool) {
    	allErrs = field.ErrorList{}
    	if len(newContainers) != len(oldContainers) {
    		// TODO: Pinpoint the specific container that causes the invalid error after we have strategic merge diff
    		allErrs = append(allErrs, field.Forbidden(fldPath, "pod updates may not add or remove containers"))
    		return allErrs, true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
Back to top