Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,390 for light (0.05 sec)

  1. 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)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinAnnotationsResolver.kt

    import org.jetbrains.kotlin.psi.KtElement
    
    /**
     * A service to match declarations with their annotations and vice versa.
     *
     * N.B. This service can produce both false positives and false negatives from time to time, since it might not be allowed to use
     * full-blown resolve to understand the true FqName of used annotation.
     *
     * The next statement should be `true` for any `annotation`:
     * ```
     * declarationsByAnnotation(annotation).all { declaration ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/first-steps.md

    <img src="/img/tutorial/security/image01.png">
    
    !!! check "Authorize button!"
        You already have a shiny new "Authorize" button.
    
        And your *path operation* has a little lock in the top-right corner that you can click.
    
    And if you click it, you have a little authorization form to type a `username` and `password` (and other optional fields):
    
    <img src="/img/tutorial/security/image02.png">
    
    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    ((Add32|Or32|Xor32) left:(Lsh32x8  x y) right:(Rsh32Ux8  x (Sub8  (Const8  [32]) y))) && (shiftIsBounded(left) || shiftIsBounded(right)) && canRotate(config, 32) => (RotateLeft32 x y)
    
    ((Add32|Or32|Xor32) right:(Rsh32Ux64 x y) left:(Lsh32x64 x z:(Sub64 (Const64 [32]) y))) && (shiftIsBounded(left) || shiftIsBounded(right)) && canRotate(config, 32) => (RotateLeft32 x z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/kotlin/my-utils/number-utils/src/main/java/org/sample/numberutils/Numbers.java

    package org.sample.numberutils;
    
    public class Numbers {
       public static int add(int left, int right) { return left + right; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 129 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/groovy/anonymous-library/src/main/java/org/sample/numberutils/Numbers.java

    package org.sample.numberutils;
    
    public class Numbers {
       public static int add(int left, int right) { return left + right; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 129 bytes
    - Viewed (0)
  7. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/AbstractDaemonCompiler.java

        protected BaseForkOptions mergeForkOptions(BaseForkOptions left, BaseForkOptions right) {
            BaseForkOptions merged = new BaseForkOptions();
            merged.setMemoryInitialSize(mergeHeapSize(left.getMemoryInitialSize(), right.getMemoryInitialSize()));
            merged.setMemoryMaximumSize(mergeHeapSize(left.getMemoryMaximumSize(), right.getMemoryMaximumSize()));
            Set<String> mergedJvmArgs = normalized(left.getJvmArgs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/histogram.go

    	for i := h.MinBucket; i <= h.MaxBucket; i++ {
    		// Tick label.
    		if h.Buckets[i] > 0 {
    			fmt.Fprintf(w, `<tr><td class="histoTime" align="right"><a href=%s>%s</a></td>`, urlmaker(h.BucketMin(i), h.BucketMin(i+1)), h.BucketMin(i))
    		} else {
    			fmt.Fprintf(w, `<tr><td class="histoTime" align="right">%s</td>`, h.BucketMin(i))
    		}
    		// Bucket bar.
    		width := h.Buckets[i] * barWidth / maxCount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:28:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

         *
         * Note that reused work times might be different to what it would actually take to execute the work
         * in the current build for a number of reasons:
         *
         * <ul>
         *     <li>reused work could have happened on a remote machine with different hardware capabilities,</li>
         *     <li>there might have been more or less load on the machine producing the reused work,</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/kotlin/modules/number-utils/src/main/java/org/sample/numberutils/Numbers.java

    package org.sample.numberutils;
    
    public class Numbers {
       public static int add(int left, int right) { return left + right; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 129 bytes
    - Viewed (0)
Back to top