Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 197 for light (0.07 sec)

  1. src/index/suffixarray/sais2.go

    		b++
    	}
    }
    
    func induceSubS_8_64(text []byte, sa, freq, bucket []int64) {
    	// Initialize positions for right side of character buckets.
    	bucketMax_8_64(text, freq, bucket)
    	bucket = bucket[:256] // eliminate bounds check for bucket[cB] below
    
    	// Analogous to induceSubL_8_64 above,
    	// as we scan the array right-to-left, each sa[i] = j > 0 is a correctly
    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type S.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    // decrypt authenticates and decrypts the record if protection is active at
    // this stage. The returned plaintext might overlap with the input.
    func (hc *halfConn) decrypt(record []byte) ([]byte, recordType, error) {
    	var plaintext []byte
    	typ := recordType(record[0])
    	payload := record[recordHeaderLen:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    		})
    	}
    
    }
    
    func statusEqual(left, right v1.PodStatus) bool {
    	left.Conditions = nil
    	right.Conditions = nil
    	return reflect.DeepEqual(left, right)
    }
    
    func conditionsEqual(left, right []v1.PodCondition) bool {
    	if len(left) != len(right) {
    		return false
    	}
    
    	for _, l := range left {
    		found := false
    		for _, r := range right {
    			if l.Type == r.Type {
    				found = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    		jm.deletePod(logger, curPod, false)
    		return
    	}
    
    	// Don't check if oldPod has the finalizer, as during ownership transfer
    	// finalizers might be re-added and removed again in behalf of the new owner.
    	// If all those Pod updates collapse into a single event, the finalizer
    	// might be removed in oldPod and curPod. We want to record the latest
    	// state.
    	finalizerRemoved := !hasJobTrackingFinalizer(curPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    			// The link field of a stack-allocated defer record might point
    			// to a heap-allocated defer record. Keep that heap record live.
    			scanblock(uintptr(unsafe.Pointer(&d.link)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
    		}
    		// Retain defers records themselves.
    		// Defer records might not be reachable from the G through regular heap
    		// tracing because the defer linked list might weave between the stack and the heap.
    		if d.heap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    				// In case we're loading a type out of a dictionary, we need to record
    				// that the containing function might put that type in an interface.
    				// That information is currently recorded in relocations in the dictionary,
    				// but if we perform this load at compile time then the dictionary
    				// might be dead.
    				reflectdata.MarkTypeSymUsedInInterface(r.Sym, f.fe.Func().Linksym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                return de;
            }
            Expression right = transform(de.getRightExpression());
            if (right == de.getRightExpression()) {
                fixDeclaringClass(de);
                return de;
            }
            DeclarationExpression newDeclExpr = new DeclarationExpression(left, de.getOperation(), right);
            newDeclExpr.setDeclaringClass(de.getDeclaringClass());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    			// Something else is adding gp1 to the goroutine profile right now.
    			// Give that a moment to finish.
    			yield()
    			continue
    		}
    
    		// While we have gp1.goroutineProfiled set to
    		// goroutineProfileInProgress, gp1 may appear _Grunnable but will not
    		// actually be able to run. Disable preemption for ourselves, to make
    		// sure we finish profiling gp1 right away instead of leaving it stuck
    		// in this limbo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Round(32|64)F ...) => (Copy ...)
    
    // Floating-point min is tricky, as the hardware op isn't right for various special
    // cases (-0 and NaN). We use two hardware ops organized just right to make the
    // result come out how we want it. See https://github.com/golang/go/issues/59488#issuecomment-1553493207
    // (although that comment isn't exactly right, as the value overwritten is not simulated correctly).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

              Arrays.sort(sortedKs, comparator);
              Object[] sortedValues = new Object[size];
    
              // We might, somehow, be able to reorder values in-place.  But it doesn't seem like
              // there's a way around creating the separate sortedKeys array, and if we're allocating
              // one array of size n, we might as well allocate two -- to say nothing of the allocation
              // done in Arrays.sort.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top