Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for Fd2path (0.15 sec)

  1. src/syscall/zsyscall_plan9_arm.go

    // Code generated by the command above; DO NOT EDIT.
    
    //go:build plan9 && arm
    
    package syscall
    
    import "unsafe"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fd2path(fd int, buf []byte) (err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/plan9/zsyscall_plan9_arm.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build plan9 && arm
    
    package plan9
    
    import "unsafe"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fd2path(fd int, buf []byte) (err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_plan9_amd64.go

    // Code generated by the command above; DO NOT EDIT.
    
    //go:build plan9 && amd64
    
    package syscall
    
    import "unsafe"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fd2path(fd int, buf []byte) (err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  4. pkg/test/fakes/imageregistry/Makefile

    $(MD_PATH)/$(BIN_NAME)-arm64: $(MD_PATH)/main.go
    	cd $(MD_PATH) && CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o $(BIN_NAME)-arm64 -a -tags netgo -ldflags '-w -extldflags "-static"' main.go
    
    build: $(MD_PATH)/$(BIN_NAME)-amd64  $(MD_PATH)/$(BIN_NAME)-arm64
    
    build_and_push: build
    	docker buildx build --platform=linux/amd64,linux/arm64 $(MD_PATH) -t $(IMG):$(TAG) -t $(IMG):latest --push
    
    clean:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. pkg/apis/discovery/validation/validation.go

    	portNames := sets.String{}
    	for i, endpointPort := range endpointPorts {
    		idxPath := fldPath.Index(i)
    
    		if len(*endpointPort.Name) > 0 {
    			allErrs = append(allErrs, apivalidation.ValidateDNS1123Label(*endpointPort.Name, idxPath.Child("name"))...)
    		}
    
    		if portNames.Has(*endpointPort.Name) {
    			allErrs = append(allErrs, field.Duplicate(idxPath.Child("name"), endpointPort.Name))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 08:49:15 UTC 2021
    - 7.8K bytes
    - Viewed (0)
  6. pkg/apis/resource/structured/namedresources/validation/validation.go

    	var allErrs field.ErrorList
    	instanceNames := sets.New[string]()
    	for i, instance := range instances {
    		idxPath := fldPath.Index(i)
    		instanceName := instance.Name
    		allErrs = append(allErrs, validateInstanceName(instanceName, idxPath.Child("name"))...)
    		if instanceNames.Has(instanceName) {
    			allErrs = append(allErrs, field.Duplicate(idxPath.Child("name"), instanceName))
    		} else {
    			instanceNames.Insert(instanceName)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. pkg/test/fakes/gce_metadata_server/Makefile

    	cd $(MD_PATH) && CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o main-arm64 -a -tags netgo -ldflags '-w -extldflags "-static"' main.go
    	docker buildx build --platform=linux/amd64,linux/arm64  $(MD_PATH) -t $(IMG):$(TAG) --push
    
    clean:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. plugin/pkg/admission/eventratelimit/apis/eventratelimit/validation/validation.go

    		}
    		if limit.QPS <= 0 {
    			allErrs = append(allErrs, field.Invalid(idxPath.Child("qps"), limit.QPS, "must be positive"))
    		}
    		if limit.Type != eventratelimitapi.ServerLimitType {
    			if limit.CacheSize < 0 {
    				allErrs = append(allErrs, field.Invalid(idxPath.Child("cacheSize"), limit.CacheSize, "must not be negative"))
    			}
    		}
    	}
    	return allErrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetector.java

                return failure(jdkPath, ex);
            } finally {
                GFileUtils.deleteQuietly(tmpDir);
            }
        }
    
    
        private static File javaExecutable(File jdkPath) {
            return new File(new File(jdkPath, "bin"), OperatingSystem.current().getExecutableName("java"));
        }
    
        private JvmInstallationMetadata parseExecOutput(File jdkPath, String probeResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 02:32:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation.go

    	var allErrs field.ErrorList
    	for i, resourceHandle := range resourceHandles {
    		idxPath := fldPath.Index(i)
    		allErrs = append(allErrs, validateResourceDriverName(resourceHandle.DriverName, idxPath.Child("driverName"))...)
    		if len(resourceHandle.Data) > resource.ResourceHandleDataMaxSize {
    			allErrs = append(allErrs, field.TooLongMaxLength(idxPath.Child("data"), len(resourceHandle.Data), resource.ResourceHandleDataMaxSize))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top