Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for dup2 (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func Dup(oldfd int) (fd int, err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_DUP<<4, uintptr(oldfd))
    	runtime.ExitSyscall()
    	fd = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup2(oldfd int, newfd int) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys	Chmod(path string, mode uint32) (err error) = SYS___CHMOD_A
    //sys   Creat(path string, mode uint32) (fd int, err error) = SYS___CREAT_A
    //sys	Dup(oldfd int) (fd int, err error)
    //sys	Dup2(oldfd int, newfd int) (err error)
    //sys	Dup3(oldfd int, newfd int, flags int) (err error) = SYS_DUP3
    //sys	Dirfd(dirp uintptr) (fd int, err error) = SYS_DIRFD
    //sys	EpollCreate(size int) (fd int, err error) = SYS_EPOLL_CREATE
    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. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    							"values": map[string]interface{}{
    								"dups": []interface{}{1, 2, 2, 3, 1000, 2000, 3},
    							},
    						}}},
    				expectError{applyPatchOperation{
    					"add another list with duplicates",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"values": map[string]interface{}{
    							"dups":  []interface{}{1, 2, 2, 3, 1000, 2000},
    							"dups2": []interface{}{1, 2, 2, 3, 1000, 2000},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            def dep1 = withColorVariants(remoteRepo.module("group", "thing1", "1.2")).publish().allowAll()
            def dep2 = withColorVariants(remoteRepo.module("group", "thing2", "1.2")).publish().allowAll()
            withColorVariants(remoteRepo.module("group", "thing3", "1.2")).dependsOn(dep1).dependsOn(dep2).publish().allowAll()
    
            setupBuildWithColorTransformThatTakesUpstreamArtifacts()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    		// referenced by name.
    		addToGlobal()
    		return i
    	}
    	switch kind {
    	case pkgDef:
    		// Defined package symbols cannot be dup to each other.
    		// We load all the package symbols first, so we don't need
    		// to check dup here.
    		// We still add it to the lookup table, as it may still be
    		// referenced by name (e.g. through linkname).
    		l.symsByName[ver][name] = i
    		addToGlobal()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    			// copy the payload of mangled to original.
    			// XXX maybe there is a better way to do this.
    			dup := ldr.Lookup(newName, ldr.SymVersion(s))
    			if dup != 0 {
    				st := ldr.SymType(s)
    				dt := ldr.SymType(dup)
    				if st == sym.Sxxx && dt != sym.Sxxx {
    					ldr.CopySym(dup, s)
    				}
    			}
    		}
    	}
    }
    
    // typeSymbolMangle mangles the given symbol name into something shorter.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/reflect/type.go

    							Ifn:  resolveReflectText(textOffFor(ft, m.Ifn)),
    							Tfn:  resolveReflectText(textOffFor(ft, m.Tfn)),
    						})
    
    					}
    				}
    			}
    		}
    		if _, dup := fset[name]; dup && name != "_" {
    			panic("reflect.StructOf: duplicate field " + name)
    		}
    		fset[name] = struct{}{}
    
    		hash = fnv1(hash, byte(ft.Hash>>24), byte(ft.Hash>>16), byte(ft.Hash>>8), byte(ft.Hash))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    	}
    
    	// Sanity check. Enable if duplicates show up.
    	if false {
    		found := make(map[[16]byte]struct{})
    		for _, ver := range merged {
    			if _, ok := found[ver.header.VersionID]; ok {
    				panic("found dupe")
    			}
    			found[ver.header.VersionID] = struct{}{}
    		}
    	}
    	return merged
    }
    
    type xlMetaBuf []byte
    
    // ToFileInfo converts xlMetaV2 into a common FileInfo datastructure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    				// delete marker, if not add a new version for this delete
    				// marker.
    				if versioned {
    					vr.VersionID = mustGetUUID()
    				}
    			}
    		}
    		// De-dup same object name to collect multiple versions for same object.
    		v, ok := versionsMap[objects[i].ObjectName]
    		if ok {
    			v.Versions = append(v.Versions, vr)
    		} else {
    			v = FileInfoVersions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top