Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for Off (0.03 sec)

  1. 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)
  2. 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)
  3. src/runtime/mgc.go

    }
    
    // gcenable is called after the bulk of the runtime initialization,
    // just before we're about to start letting user code run.
    // It kicks off the background sweeper goroutine, the background
    // scavenger goroutine, and enables GC.
    func gcenable() {
    	// Kick off sweeping and scavenging.
    	c := make(chan int, 2)
    	go bgsweep(c)
    	go bgscavenge(c)
    	<-c
    	<-c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/traceback.go

    		startOffset = *(*uint8)(liveInfo)
    	}
    
    	isLive := func(off, slotIdx uint8) bool {
    		if liveInfo == nil || liveIdx <= 0 {
    			return true // no liveness info, always live
    		}
    		if off < startOffset {
    			return true
    		}
    		bits := *(*uint8)(add(liveInfo, uintptr(liveIdx)+uintptr(slotIdx/8)))
    		return bits&(1<<(slotIdx%8)) != 0
    	}
    
    	print1 := func(off, sz, slotIdx uint8) {
    		x := readUnaligned64(add(argp, uintptr(off)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        }
        return success();
      }
    };
    
    }  // namespace
    
    void PopulateLoweringTFPatterns(MLIRContext *context,
                                    RewritePatternSet *patterns) {
      // clang-format off
      patterns->add<
          LowerAddNOp,
          LowerExp1mOp,
          ConvertFakeQuantWithMinMaxVarsOp,
          LowerDynamicStitchOp<DynamicStitchOp>,
          LowerDynamicStitchOp<ParallelDynamicStitchOp>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top