Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for snapshots (0.24 sec)

  1. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        assertThat(filesystem.exists(journalBkpFile)).isTrue()
        createNewCache()
        val snapshotA = cache["k1"]!!
        snapshotA.assertValue(0, "ABC")
        snapshotA.assertValue(1, "DE")
        val snapshotB = cache["k2"]!!
        snapshotB.assertValue(0, "F")
        snapshotB.assertValue(1, "GH")
        assertThat(filesystem.exists(journalBkpFile)).isFalse()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  2. .teamcity/test-buckets.json

    					"wrapper-shared"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"kotlin-dsl-integ-tests",
    					"snapshots",
    					"platform-jvm",
    					"build-cache-spi",
    					"internal-integ-testing",
    					"jvm-services",
    					"publish",
    					"problems-api",
    					"process-services",
    					"build-configuration",
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon May 06 14:29:38 GMT 2024
    - 49.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            }
    
            if (string.endsWith("SNAPSHOT") && !string.endsWith("-SNAPSHOT")) {
                addViolation(
                        problems,
                        severity,
                        version,
                        fieldName,
                        sourceHint,
                        "uses an unsupported snapshot version format, should be '*-SNAPSHOT' instead.",
                        tracker);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        throw new IllegalStateException(
                                "Failed to create release distribution repository for " + project.getId(), e);
                    }
                }
    
                // snapshot artifact repository
                if (project.getDistributionManagement() != null
                        && project.getDistributionManagement().getSnapshotRepository() != null) {
                    try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        void testParentInterpolation() throws Exception {
            PomTestWrapper pom = buildPom("parent-interpolation/sub");
            pom = new PomTestWrapper(pom.getMavenProject().getParent());
            assertEquals("1.3.0-SNAPSHOT", pom.getValue("build/plugins[1]/version"));
        }
    
        /*
        public void testMaven()
            throws Exception
        {
            PomTestWrapper pom =  buildPomFromMavenProject( "maven-build/sub/pom.xml", null );
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // first request is issued will be included in any subsequent continued requests. This is sometimes
      // referred to as a consistent snapshot, and ensures that a client that is using limit to receive
      // smaller chunks of a very large result can ensure they see all possible objects. If objects are
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

       * iterable. The key used to store that value in the multimap will be the result of calling the
       * function on that value. The resulting multimap is created as an immutable snapshot. In the
       * returned multimap, keys appear in the order they are first encountered, and the values
       * corresponding to each key appear in the same order as they are encountered.
       *
       * <p>For example,
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

                @Override
                public void recordLoadException(long loadTime) {}
    
                @Override
                public void recordEviction() {}
    
                @Override
                public CacheStats snapshot() {
                  return EMPTY_STATS;
                }
              });
      static final CacheStats EMPTY_STATS = new CacheStats(0, 0, 0, 0, 0, 0);
    
      /*
       * We avoid using a method reference or lambda here for now:
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

        pools.
    
     *  **OkHttpClient is now stateless.** In the 2.x API `OkHttpClient` had getters
        and setters. Internally each request was forced to make its own complete
        snapshot of the `OkHttpClient` instance to defend against racy configuration
        changes. In 3.x, `OkHttpClient` is now stateless and has a builder. Note
        that this class is not strictly immutable as it has stateful members like
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         */
        volatile int count;
    
        /**
         * Number of updates that alter the size of the table. This is used during bulk-read methods to
         * make sure they see a consistent snapshot: If modCounts change during a traversal of segments
         * computing size or checking containsValue, then we might have an inconsistent view of state so
         * (usually) must retry.
         */
        int modCount;
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
Back to top