Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,390 for light (0.05 sec)

  1. 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)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersection.java

         * in either order: that is, if {@code left instanceof L && right instanceof R} or {@code left instanceof R && right instanceof L}.
         *
         * @param left an exclude spec
         * @param right another exclude spec
         * @return {@code true} if this intersection applies to the given exclude specs (in any order); {@code false} otherwise
         */
        boolean applies(ExcludeSpec left, ExcludeSpec right);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            protected final Collector<T> left;
            protected final Collector<T> right;
    
            private AbstractPlusCollector(Collector<T> left, Collector<T> right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public int size() {
                return left.size() + right.size();
            }
    
            @Override
            public ValueProducer getProducer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MergeProviderTest.groovy

            def mergedSideEffect = Mock(ValueSupplier.SideEffect)
    
            def left = Providers.of("left").withSideEffect(leftSideEffect)
            def right = Providers.of("right").withSideEffect(rightSideEffect)
    
            def provider = new MergeProvider([left, right]).withSideEffect(mergedSideEffect)
    
            when:
            provider.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/toolingApi-processing.puml

    end box
    
    ConsumerConnection -> ModelProducer: request
    activate ModelProducer
    ModelProducer -> DefaultConnection: request
    note right
    DefaultConnection has entry points to accept calls from different ToolingAPI versions
    end note
    DefaultConnection -> ProviderConnection: request
    note right
    request is funneled into ProviderConnection that is much simpler
    end note
    box "BuildActionExecuter chain in :launcher"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/regexp/onepass_test.go

    		merged, next := mergeRuneSets(&test.left, &test.right, test.leftPC, test.rightPC)
    		if !slices.Equal(merged, test.merged) {
    			t.Errorf("mergeRuneSet :%d (%v, %v) merged\n have\n%v\nwant\n%v", ix, test.left, test.right, merged, test.merged)
    		}
    		if !slices.Equal(next, test.next) {
    			t.Errorf("mergeRuneSet :%d(%v, %v) next\n have\n%v\nwant\n%v", ix, test.left, test.right, next, test.next)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Ordering.java

        @Override
        public int compare(@CheckForNull Object left, @CheckForNull Object right) {
          if (left == right) {
            return 0;
          } else if (left == null) {
            return -1;
          } else if (right == null) {
            return 1;
          }
          int leftCode = identityHashCode(left);
          int rightCode = identityHashCode(right);
          if (leftCode != rightCode) {
            return leftCode < rightCode ? -1 : 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/handling-errors.md

    The benefit of raising an exception over `return`ing a value will be more evident in the section about Dependencies and Security.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/groovy/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)
  10. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

        font-size: 10pt;
    }
    
    th, td {
        white-space: nowrap;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 12px;
        padding-right: 12px;
        text-align: left;
        vertical-align: bottom;
    }
    
    th.numeric, td.numeric {
        text-align: right;
    }
    
    .empty {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    .more-detail {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top