Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,262 for addOne (0.14 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AtomicLongMapTest.java

        String key = "key";
        long addend = random.nextInt(MAX_ADDEND);
        for (int i = 0; i < ITERATIONS; i++) {
          long before = map.get(key);
          long result = map.addAndGet(key, addend);
          long after = map.get(key);
          assertEquals(before + addend, after);
          assertEquals(after, result);
          addend = after;
        }
        assertEquals(1, map.size());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/AtomicLongMapTest.java

        String key = "key";
        long addend = random.nextInt(MAX_ADDEND);
        for (int i = 0; i < ITERATIONS; i++) {
          long before = map.get(key);
          long result = map.addAndGet(key, addend);
          long after = map.get(key);
          assertEquals(before + addend, after);
          assertEquals(after, result);
          addend = after;
        }
        assertEquals(1, map.size());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. releasenotes/notes/46540.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 46540
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 05 16:46:02 UTC 2023
    - 162 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultMutableAttributeContainerTest.groovy

            container.attributeProvider(testAttr, testProvider)
    
            when: "adding a set value testAttr"
            container.attribute(testAttr, "set value")
    
            then: "the set value should be retrievable"
            "set value" == container.getAttribute(testAttr)
        }
    
        def "adding lazy attribute should override replace existing attribute"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 08 14:34:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/InternalNullabilityTest.java

         * <p>
         * The annotation can be applied on the class directly, but the preferred way is to annotate the package by adding or updating the {@code package-info.java} file.
         * See {@code subprojects/core-api/src/main/java/org/gradle/package-info.java} for an example.
         * <p>
         * Note that adding the annotation for a package in one subproject will automatically apply it for the same package in all other subprojects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

    import org.gradle.kotlin.dsl.support.excludeMapFor
    import org.gradle.kotlin.dsl.support.mapOfNonNullValuesOf
    import org.gradle.kotlin.dsl.support.uncheckedCast
    
    
    /**
     * Creates a dependency on a module without adding it to a configuration.
     *
     * @param group the group of the module to be added as a dependency.
     * @param name the name of the module to be added as a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. cluster/addons/addon-manager/CHANGELOG.md

     - Refresh base images.
    
    ### Version 6.4-beta.1  (Wed March 8 2017 Zihong Zheng <******@****.***>)
     - Create EnsureExists class addons before Reconcile class addons.
    
    ### Version 6.4-alpha.3  (Fri February 24 2017 Zihong Zheng <******@****.***>)
     - Support 'ensure exist' class addon and use addon-manager specific label.
    
    ### Version 6.4-alpha.2 (Wed February 16 2017 Zihong Zheng <******@****.***>)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/providers/property/tests/propertyKotlin.out

    Root project 'property-provider'
    ------------------------------------------------------------
    
    classpath
    No dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 15:37:47 UTC 2024
    - 328 bytes
    - Viewed (0)
  9. tests/integration/pilot/revisions/uninstall_test.go

    	if len(reStrList) != 0 {
    		for _, remaining := range reItemList {
    			labels := remaining.GetLabels()
    			cn, ok := labels["operator.istio.io/component"]
    			// we don't need to check the legacy addons here because we would not install that in test anymore.
    			if ok && cn != string(name.IstioBaseComponentName) {
    				return fmt.Errorf("expect only base component resources still exist")
    			}
    		}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryNamingScheme.java

         */
        BinaryNamingScheme withBinaryName(String name);
    
        /**
         * Creates a copy of this scheme, adding a variant dimension.
         */
        BinaryNamingScheme withVariantDimension(String dimension);
    
        /**
         * Creates a copy of this scheme, adding a variant dimension if required.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top