Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for revalue (0.24 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("test-prop", pom.getValue("properties[1]/b")); // verifies profile applied
            assertEquals(4, ((List<?>) pom.getValue("modules")).size());
            assertEquals("module-2", pom.getValue("modules[1]"));
            assertEquals("module-1", pom.getValue("modules[2]"));
            assertEquals("module-3", pom.getValue("modules[3]"));
            assertEquals("module-4", pom.getValue("modules[4]"));
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * acquire other locks, risking deadlocks.
       *
       * @param value the value to be used as the result
       * @return true if the attempt was accepted, completing the {@code Future}
       */
      @CanIgnoreReturnValue
      protected boolean set(@ParametricNullness V value) {
        Object valueToSet = value == null ? NULL : value;
        if (ATOMIC_HELPER.casValue(this, null, valueToSet)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * acquire other locks, risking deadlocks.
       *
       * @param value the value to be used as the result
       * @return true if the attempt was accepted, completing the {@code Future}
       */
      @CanIgnoreReturnValue
      protected boolean set(@ParametricNullness V value) {
        Object valueToSet = value == null ? NULL : value;
        if (ATOMIC_HELPER.casValue(this, null, valueToSet)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. pkg/controller/podautoscaler/replica_calculator_test.go

    							Time: time.Now().Add(-3 * time.Minute),
    						},
    					},
    				},
    			},
    			metrics: metricsclient.PodMetricsInfo{
    				"lucretius": metricsclient.PodMetric{Value: 1},
    				"niccolo":   metricsclient.PodMetric{Value: 1},
    			},
    			resource:            v1.ResourceCPU,
    			expectReadyPodCount: 1,
    			expectUnreadyPods:   sets.NewString("lucretius"),
    			expectMissingPods:   sets.NewString("epicurus"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

        "schedulerName": "schedulerNameValue",
        "tolerations": [
          {
            "key": "keyValue",
            "operator": "operatorValue",
            "value": "valueValue",
            "effect": "effectValue",
            "tolerationSeconds": 5
          }
        ],
        "hostAliases": [
          {
            "ip": "ipValue",
            "hostnames": [
              "hostnamesValue"
            ]
          }
        ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/MapsTest.java

        assertEquals("World", entry.getValue());
        assertTrue(iter.hasNext());
    
        entry = iter.next();
        assertEquals("first", entry.getKey());
        assertEquals("second", entry.getValue());
        assertTrue(iter.hasNext());
    
        entry = iter.next();
        assertEquals("polygene", entry.getKey());
        assertEquals("lubricants", entry.getValue());
        assertTrue(iter.hasNext());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                for (Map.Entry<String, Expression> member : an.getMembers().entrySet()) {
                    Expression newValue = transform(member.getValue());
                    newValue = transformInlineConstants(newValue);
                    member.setValue(newValue);
                    checkAnnotationMemberValue(newValue);
                }
                if (annType.isResolved()) {
                    Class<?> annTypeClass = annType.getTypeClass();
    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. android/guava/src/com/google/common/collect/Synchronized.java

            return delegate().getKey();
          }
        }
    
        @Override
        public V getValue() {
          synchronized (mutex) {
            return delegate().getValue();
          }
        }
    
        @Override
        public V setValue(V value) {
          synchronized (mutex) {
            return delegate().setValue(value);
          }
        }
    
        private static final long serialVersionUID = 0;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Synchronized.java

            return delegate().getKey();
          }
        }
    
        @Override
        public V getValue() {
          synchronized (mutex) {
            return delegate().getValue();
          }
        }
    
        @Override
        public V setValue(V value) {
          synchronized (mutex) {
            return delegate().setValue(value);
          }
        }
    
        private static final long serialVersionUID = 0;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            leftOperandPsi: KtExpression,
        ): KaPartiallyAppliedFunctionSymbol<KaFunctionSymbol>? {
            // The new value is a call to the appropriate operator function.
            val operationCall = fir.rValue as? FirFunctionCall ?: getInitializerOfReferencedLocalVariable(fir.rValue) ?: return null
            return operationCall.toPartiallyAppliedSymbol(leftOperandPsi)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top