Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for DUP (0.02 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                methodVisitor.visitVarInsn(Opcodes.ALOAD, 0);
                methodVisitor.visitFieldInsn(Opcodes.GETFIELD, className, META_CLASS_FIELD, META_CLASS_TYPE.getDescriptor());
                methodVisitor.visitInsn(Opcodes.DUP);
                methodVisitor.visitJumpInsn(Opcodes.IFNULL, lookup);
                methodVisitor.visitInsn(Opcodes.ARETURN);
    
                methodVisitor.visitLabel(lookup);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/syscall/syscall_plan9.go

    func Wstat(path string, edir []byte) (err error) {
    	if fixwd(path) {
    		defer runtime.UnlockOSThread()
    	}
    	return wstat(path, edir)
    }
    
    //sys	chdir(path string) (err error)
    //sys	Dup(oldfd int, newfd int) (fd int, err error)
    //sys	Pread(fd int, p []byte, offset int64) (n int, err error)
    //sys	Pwrite(fd int, p []byte, offset int64) (n int, err error)
    //sys	Close(fd int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/syscall/syscall_darwin.go

    //sys	Chmod(path string, mode uint32) (err error)
    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    //sys	Close(fd int) (err error)
    //sys	closedir(dir uintptr) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Dup2(from int, to int) (err error)
    //sys	Exchangedata(path1 string, path2 string, options int) (err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchflags(fd int, flags int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	configMapLister corev1listers.ConfigMapLister
    	configMapClient corev1client.ConfigMapsGetter
    	namespaceClient corev1client.NamespacesGetter
    
    	// queue is where incoming work is placed to de-dup and to allow "easy" rate limited requeues on errors.
    	// we only ever place one entry in here, but it is keyed as usual: namespace/name
    	queue workqueue.TypedRateLimitingInterface[string]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K 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. pkg/volume/util/util_test.go

    				},
    			}),
    			expectedMountList: []string{"ro", "nfsvers=3", "fsid=100", "hard"},
    			systemOptions:     []string{"fsid=100", "hard"},
    		},
    		"vol-with-sys-opts-with-dup": {
    			volume: createVolumeSpecWithMountOption("good-mount-opts", "ro,nfsvers=3", v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/range_allocator.go

    	nodesSynced cache.InformerSynced
    	broadcaster record.EventBroadcaster
    	recorder    record.EventRecorder
    
    	// queues are where incoming work is placed to de-dup and to allow "easy"
    	// rate limited requeues on errors
    	queue workqueue.RateLimitingInterface
    }
    
    var _ CIDRAllocator = &rangeAllocator{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    //sys	ClockGettime(clockid int32, time *Timespec) (err error)
    //sys	Close(fd int) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Dup2(from int, to int) (err error)
    //sys	Exit(code int)
    //sys	ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. src/syscall/syscall_solaris.go

    //sys	Chdir(path string) (err error)
    //sys	Chmod(path string, mode uint32) (err error)
    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    //sys	Close(fd int) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fpathconf(fd int, name int) (val int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. 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)
Back to top