Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 193 for BREAK (0.06 sec)

  1. src/runtime/malloc.go

    	minSizeForMallocHeaderIsSizeClass := false
    	for i := 0; i < len(class_to_size); i++ {
    		if minSizeForMallocHeader == uintptr(class_to_size[i]) {
    			minSizeForMallocHeaderIsSizeClass = true
    			break
    		}
    	}
    	if !minSizeForMallocHeaderIsSizeClass {
    		throw("min size of malloc header is not a size class boundary")
    	}
    	// Check that the pointer bitmap for all small sizes without a malloc header
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    	}
    	v.value = value
    	return err
    }
    
    func (b *dFlag) String() string { return "" }
    
    func init() {
    	work.AddBuildFlags(CmdGet, work.OmitModFlag)
    	CmdGet.Run = runGet // break init loop
    	CmdGet.Flag.Var(&getD, "d", "")
    	CmdGet.Flag.Var(&getU, "u", "")
    }
    
    func runGet(ctx context.Context, cmd *base.Command, args []string) {
    	switch getU.version {
    	case "", "upgrade", "patch":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

          while ((ref = keyReferenceQueue.poll()) != null) {
            @SuppressWarnings("unchecked")
            E entry = (E) ref;
            map.reclaimKey(entry);
            if (++i == DRAIN_MAX) {
              break;
            }
          }
        }
    
        @GuardedBy("this")
        void drainValueReferenceQueue(ReferenceQueue<V> valueReferenceQueue) {
          Reference<? extends V> ref;
          int i = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	iter := &span.specials
    	found := false
    	for {
    		s := *iter
    		if s == nil {
    			break
    		}
    		if offset == uintptr(s.offset) && kind == s.kind {
    			found = true
    			break
    		}
    		if offset < uintptr(s.offset) || (offset == uintptr(s.offset) && kind < s.kind) {
    			break
    		}
    		iter = &s.next
    	}
    	return iter, found
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    	// itself wrap at a power of two.
    	for {
    		prev := c.value.Load()
    		cycle := prev >> 1
    		cycle = (cycle + 1) % mProfCycleWrap
    		next := cycle << 1
    		if c.value.CompareAndSwap(prev, next) {
    			break
    		}
    	}
    }
    
    // newBucket allocates a bucket with the given type and number of stack entries.
    func newBucket(typ bucketType, nstk int) *bucket {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          while ((ref = keyReferenceQueue.poll()) != null) {
            @SuppressWarnings("unchecked")
            E entry = (E) ref;
            map.reclaimKey(entry);
            if (++i == DRAIN_MAX) {
              break;
            }
          }
        }
    
        @GuardedBy("this")
        void drainValueReferenceQueue(ReferenceQueue<V> valueReferenceQueue) {
          Reference<? extends V> ref;
          int i = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    	}
    	t.rparams = &rparams
    	// HasShape should be set if any type argument is or has a shape type.
    	for _, rparam := range rparams {
    		if rparam.HasShape() {
    			t.SetHasShape(true)
    			break
    		}
    	}
    }
    
    // IsFullyInstantiated reports whether t is a fully instantiated generic type; i.e. an
    // instantiated generic type where all type arguments are non-generic or fully
    // instantiated generic types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        /*
                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
                                prefix,
                                "scope",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    		}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// look for expression
    		var expr syntax.Expr
    		for e := range info.Types {
    			if ExprString(e) == test.expr {
    				expr = e
    				break
    			}
    		}
    		if expr == nil {
    			t.Errorf("package %s: no expression found for %s", name, test.expr)
    			continue
    		}
    		tv := info.Types[expr]
    
    		// check that type is correct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    // instead. The bool is still unfortunate, but it's not as bad as
    // breaking the ecosystem on every new release.
    //
    // If the Go garbage collector ever does move heap objects, we can set
    // this to true to break all the programs using assume-no-moving-gc.
    //
    //go:linkname heapObjectsCanMove
    func heapObjectsCanMove() bool {
    	return false
    }
    
    func gcinit() {
    	if unsafe.Sizeof(workbuf{}) != _WorkbufSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top