Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 621 for light (0.1 sec)

  1. src/crypto/internal/edwards25519/field/fe_test.go

    		return reflect.ValueOf(generateWeirdFieldElement(rand))
    	}
    	return reflect.ValueOf(generateFieldElement(rand))
    }
    
    // isInBounds returns whether the element is within the expected bit size bounds
    // after a light reduction.
    func isInBounds(x *Element) bool {
    	return bits.Len64(x.l0) <= 52 &&
    		bits.Len64(x.l1) <= 52 &&
    		bits.Len64(x.l2) <= 52 &&
    		bits.Len64(x.l3) <= 52 &&
    		bits.Len64(x.l4) <= 52
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe.go

    func (v *Element) One() *Element {
    	*v = *feOne
    	return v
    }
    
    // reduce reduces v modulo 2^255 - 19 and returns it.
    func (v *Element) reduce() *Element {
    	v.carryPropagate()
    
    	// After the light reduction we now have a field element representation
    	// v < 2^255 + 2^13 * 19, but need v < 2^255 - 19.
    
    	// If v >= 2^255 - 19, then v + 19 >= 2^255, which would overflow 2^255 - 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/writebarrier.go

    	base *Value
    	mask uint64
    }
    
    // mightBeHeapPointer reports whether v might point to the heap.
    // v must have pointer type.
    func mightBeHeapPointer(v *Value) bool {
    	if IsGlobalAddr(v) {
    		return false
    	}
    	return true
    }
    
    // mightContainHeapPointer reports whether the data currently at addresses
    // [ptr,ptr+size) might contain heap pointers. "currently" means at memory state mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	  unicode,
    	  unicode/utf8,
    	  unicode/utf16;
    
    	internal/goarch < internal/abi;
    	internal/byteorder, internal/goarch < internal/chacha8rand;
    
    	# RUNTIME is the core runtime group of packages, all of them very light-weight.
    	internal/abi,
    	internal/chacha8rand,
    	internal/coverage/rtcov,
    	internal/cpu,
    	internal/goarch,
    	internal/godebugs,
    	internal/goexperiment,
    	internal/goos,
    	internal/profilerecord,
    	math/bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/cmd/link/link_test.go

    	principle int `text:"The one great principle of the English law is, to make business for itself. There is no other principle distinctly, certainly, and consistently maintained through all its narrow turnings. Viewed by this light it becomes a coherent scheme, and not the monstrous maze the laity are apt to think it. Let them but once clearly perceive that its grand principle is to make business for itself at their expense, and surely they will cease to grumble."`
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/config.go

    	DiscoveryAddresses discovery.Addresses
    	// The default set of healthz checks. There might be more added via AddHealthChecks dynamically.
    	HealthzChecks []healthz.HealthChecker
    	// The default set of livez checks. There might be more added via AddHealthChecks dynamically.
    	LivezChecks []healthz.HealthChecker
    	// The default set of readyz-only checks. There might be more added via AddReadyzChecks dynamically.
    	ReadyzChecks []healthz.HealthChecker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  7. pkg/controller/resourceclaim/controller.go

    		*newPodClaims = make(map[string]string)
    	}
    	(*newPodClaims)[podClaim.Name] = claim.Name
    
    	return nil
    }
    
    // findPodResourceClaim looks for an existing ResourceClaim with the right
    // annotation (ties it to the pod claim) and the right ownership (ties it to
    // the pod).
    func (ec *Controller) findPodResourceClaim(pod *v1.Pod, podClaim v1.PodResourceClaim) (*resourcev1alpha2.ResourceClaim, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/endpoint_builder.go

    }
    
    // addUint32AvoidOverflow returns sum of two uint32 and status. If sum overflows,
    // and returns MaxUint32 and status.
    func addUint32(left, right uint32) (uint32, bool) {
    	if math.MaxUint32-right < left {
    		return math.MaxUint32, true
    	}
    	return left + right, false
    }
    
    func (b *EndpointBuilder) filterIstioEndpoint(ep *model.IstioEndpoint) bool {
    	// for ServiceInternalTrafficPolicy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. src/slices/slices.go

    	}
    	if n+m > cap(s) {
    		// Use append rather than make so that we bump the size of
    		// the slice up to the next storage class.
    		// This is what Grow does but we don't call Grow because
    		// that might copy the values twice.
    		s2 := append(s[:i], make(S, n+m-i)...)
    		copy(s2[i:], v)
    		copy(s2[i+m:], s[i:])
    		return s2
    	}
    	s = s[:n+m]
    
    	// before:
    	// s: aaaaaaaabbbbccccccccdddd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/runtime/mgclimit.go

    		return false
    	}
    	e.stamp.Store(uint64(makeLimiterEventStamp(typ, now)))
    	return true
    }
    
    // consume acquires the partial event CPU time from any in-flight event.
    // It achieves this by storing the current time as the new event time.
    //
    // Returns the type of the in-flight event, as well as how long it's currently been
    // executing for. Returns limiterEventNone if no event is active.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top