Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,309 for MODIFIED (0.22 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/OutputFileChangesTest.groovy

        }
    
        def "trivial content change"() {
            expect:
            changes(
                regularFile("one", 0x1234),
                regularFile("one", 0xffff)
            ) == [modified("one")]
        }
    
        def "deep equality"() {
            expect:
            changes(
                directory("root", [
                    regularFile("root/one", 0x1234),
                    regularFile("root/two", 0x2345)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/MutableGraph.java

       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeNode(N node);
    
      /**
       * Removes the edge connecting {@code nodeU} to {@code nodeV}, if it is present.
       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeEdge(N nodeU, N nodeV);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbsolutePathChangeDetector.java

                    if (!itemComparator.hasSameContent(previousItem, currentItem)) {
                        Change modified = changeFactory.modified(currentAbsolutePath, propertyTitle, previousItem, currentItem);
                        if (!visitor.visitChange(modified)) {
                            return false;
                        }
                    }
                    // else, unchanged; check next file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultFileChange.java

        }
    
        public static DefaultFileChange modified(String path, String title, FileType previousFileType, FileType currentFileType, String normalizedPath) {
            return new DefaultFileChange(path, ChangeTypeInternal.MODIFIED, title, previousFileType, currentFileType, normalizedPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CacheTest.kt

            MockResponse.Builder()
              .addHeader("Last-Modified: $lastModifiedDate")
              .addHeader("Date: " + formatDate(-15, TimeUnit.SECONDS))
              .build(),
          )
        assertThat(conditionalRequest.headers["If-Modified-Since"])
          .isEqualTo(lastModifiedDate)
      }
    
      @Test
      fun defaultExpirationDateFullyCachedForMoreThan24Hours() {
        //      last modified: 105 days ago
        //             served:   5 days ago
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java

            parent.setArtifactId("apache");
            parent.setVersion("(,2.0)");
    
            AtomicReference<org.apache.maven.api.model.Parent> modified = new AtomicReference<>();
            assertNotNull(this.newModelResolver().resolveModel(parent.getDelegate(), modified));
            assertEquals("1", modified.get().getVersion());
        }
    
        @Test
        void testResolveDependencyThrowsUnresolvableModelExceptionWhenNotFound() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http2/hpack/static_table.go

    		"from":                        37,
    		"host":                        38,
    		"if-match":                    39,
    		"if-modified-since":           40,
    		"if-none-match":               41,
    		"if-range":                    42,
    		"if-unmodified-since":         43,
    		"last-modified":               44,
    		"link":                        45,
    		"location":                    46,
    		"max-forwards":                47,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIncrementalIntegrationTest.groovy

            }
            then:
            executesIncrementally("""
                ext.removed = ['third']
                ext.modified = ['first', 'second']
            """)
        }
    
        private void setupBuildFile() {
            buildFile .text = """
                ext {
                    added = []
                    modified = []
                    removed = []
                    incremental = true
                    registerNewOutput = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 10:57:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

                        protected boolean exec() {
                            try {
                                AtomicReference<Parent> modified = new AtomicReference<>();
                                ModelSource source = doResolveModel(parent, modified);
                                result = new Result(source, modified.get(), null);
                            } catch (Exception e) {
                                result = new Result(null, null, e);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/version_buildvcs_hg.txt

    ! stdout vcs.revision
    ! stdout vcs.time
    stdout '^\tbuild\tvcs.modified=true$'
    cd ..
    
    # Revision and commit time are tagged for repositories with commits.
    exec hg add a README
    exec hg commit -m 'initial commit'
    cd a
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.revision='
    stdout '^\tbuild\tvcs.time='
    stdout '^\tbuild\tvcs.modified=false$'
    rm $GOBIN/a$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 18:09:02 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top