Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for noff (0.18 sec)

  1. src/cmd/cgo/gcc.go

    			// structs are in system headers that cannot be corrected.
    			continue
    		}
    
    		// Round off up to talign, assumed to be a power of 2.
    		off = (off + talign - 1) &^ (talign - 1)
    
    		if f.ByteOffset > off {
    			fld, sizes = c.pad(fld, sizes, f.ByteOffset-off)
    			off = f.ByteOffset
    		}
    		if f.ByteOffset < off {
    			// Drop a packed field that we can't represent.
    			continue
    		}
    
    		n := len(fld)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	-short
    	    Tell long-running tests to shorten their run time.
    	    It is off by default but set during all.bash so that installing
    	    the Go tree can run a sanity check but not spend time running
    	    exhaustive tests.
    
    	-shuffle off,on,N
    	    Randomize the execution order of tests and benchmarks.
    	    It is off by default. If -shuffle is set to on, then it will seed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    		base.Fatalf("go: unknown environment setting GO111MODULE=%s", env)
    	case "auto":
    		mustUseModules = ForceUseModules
    	case "on", "":
    		mustUseModules = true
    	case "off":
    		if ForceUseModules {
    			base.Fatalf("go: modules disabled by GO111MODULE=off; see 'go help modules'")
    		}
    		mustUseModules = false
    		return
    	}
    
    	if err := fsys.Init(base.Cwd()); err != nil {
    		base.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {
    	r0, _, e1 := Syscall6(SYS_COPY_FILE_RANGE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    // BUG(brainman): The definition of Linger is not appropriate for direct use
    // with Setsockopt and Getsockopt.
    // Use SetsockoptLinger instead.
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type sysLinger struct {
    	Onoff  uint16
    	Linger uint16
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			m.recorder.Eventf(containerRef, v1.EventTypeWarning, events.BackOffStartContainer,
    				fmt.Sprintf("Back-off restarting failed container %s in pod %s", container.Name, format.Pod(pod)))
    		}
    		err := fmt.Errorf("back-off %s restarting failed container=%s pod=%s", backOff.Get(key), container.Name, format.Pod(pod))
    		klog.V(3).InfoS("Back-off restarting failed container", "err", err.Error())
    		return true, err.Error(), kubecontainer.ErrCrashLoopBackOff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    		o1 |= (uint32(r)&15)<<16 | (uint32(rt)&15)<<12
    		o2 |= (uint32(rt)&15)<<16 | (uint32(rt)&15)<<12
    		o1 |= y
    		o2 |= x
    
    	case 3: /* add R<<[IR],[R],R */
    		o1 = c.mov(p)
    
    	case 4: /* MOVW $off(R), R -> add $off,[R],R */
    		c.aclass(&p.From)
    		if c.instoffset < 0 {
    			o1 = c.oprrr(p, ASUB, int(p.Scond))
    			o1 |= uint32(immrot(uint32(-c.instoffset)))
    		} else {
    			o1 = c.oprrr(p, AADD, int(p.Scond))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    	if len(bmbuf) < maxSize {
    		bmbuf = make([]byte, maxSize)
    	}
    
    	for _, n := range sizes {
    		for _, off := range []int{0, 1, 4, 7} {
    			buf1 := bmbuf[off : off+n]
    			buf2Start := (len(bmbuf) / 2) + off
    			buf2 := bmbuf[buf2Start : buf2Start+n]
    			buf1[n-1] = 'x'
    			buf2[n-1] = 'x'
    			b.Run(fmt.Sprint(n, off), func(b *testing.B) {
    				b.SetBytes(int64(n))
    				for i := 0; i < b.N; i++ {
    					eq := Equal(buf1, buf2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

                    sids[ ai ] = aces[ ai ].getSID();
                }
    
                for ( int off = 0; off < sids.length; off += 64 ) {
                    int len = sids.length - off;
                    if ( len > 64 )
                        len = 64;
    
                    getContext().getSIDResolver().resolveSids(getContext(), server, sids, off, len);
                }
            }
            else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. guava/src/com/google/common/cache/CacheBuilder.java

       * has elapsed after the entry's creation, or the most recent replacement of its value.
       *
       * <p>When {@code duration} is zero, this method hands off to {@link #maximumSize(long)
       * maximumSize}{@code (0)}, ignoring any otherwise-specified maximum size or weight. This can be
       * useful in testing, or to disable caching temporarily without a code change.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top