Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,309 for MODIFIED (0.25 sec)

  1. cmd/object-handlers-common.go

    		if objInfo.ETag != "" {
    			w.Header()[xhttp.ETag] = []string{"\"" + objInfo.ETag + "\""}
    		}
    	}
    	// x-amz-copy-source-if-modified-since: Return the object only if it has been modified
    	// since the specified time otherwise return 412 (precondition failed).
    	ifModifiedSinceHeader := r.Header.Get(xhttp.AmzCopySourceIfModifiedSince)
    	if ifModifiedSinceHeader != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/watch/watch_test.go

    func TestFake(t *testing.T) {
    	f := NewFake()
    
    	table := []struct {
    		t EventType
    		s testType
    	}{
    		{Added, testType("foo")},
    		{Modified, testType("qux")},
    		{Modified, testType("bar")},
    		{Deleted, testType("bar")},
    		{Error, testType("error: blah")},
    	}
    
    	// Prove that f implements Interface by phrasing this as a function.
    	consumer := func(w Interface) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 15 11:34:31 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java

                    .version("(,2.0)")
                    .build();
    
            AtomicReference<Parent> modified = new AtomicReference<>();
            assertNotNull(this.newModelResolver().resolveModel(parent, modified));
            assertNotNull(modified.get());
            assertEquals("1.0", modified.get().getVersion());
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesBetweenBuildsFileSystemWatchingIntegrationTest.groovy

            then:
            outputContains "Hello from original task!"
    
            when:
            taskSourceFile.text = taskWithGreeting("Hello from modified task!")
            waitForChangesToBePickedUp()
            runWithWatchingEnabled "hello"
            then:
            outputContains "Hello from modified task!"
        }
    
        def "Groovy build script changes are recognized"() {
            when:
            buildFile.text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	}
    
    	return json.Marshal(patchMap)
    }
    
    func ItemAddedToModifiedSlice(original, modified string) bool { return original > modified }
    
    func ItemRemovedFromModifiedSlice(original, modified string) bool { return original < modified }
    
    func ItemMatchesOriginalAndModifiedSlice(original, modified string) bool { return original == modified }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                previous = nextEntry(previousEntries);
            }
    
            void modified() {
                DefaultFileChange modified = DefaultFileChange.modified(current.getKey(), propertyTitle, previous.getValue().getType(), current.getValue().getType(), current.getValue().getNormalizedPath());
                changeConsumer.visitChange(modified);
                previous = nextEntry(previousEntries);
                current = nextEntry(currentEntries);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ClasspathCompareStrategyTest.groovy

                [jar1: jar(1234), jar2: jar(2345), jar3: jar(4567), jar4: jar(5678)],
                [jar1: jar(1234), jar2: jar(3456), jar3: jar(4568), jar4: jar(5678)]
            ) == [modified("jar2"), modified("jar3")]
        }
    
        def "jar never modified for different paths"() {
            expect:
            changes(
                [jar1: jar(1234), 'new-jar2': jar(2345), jar3: jar(4567), jar4: jar(5678)],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. android/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)
  9. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    // Calculate addition-and-change patch between current and modified.
    // Calculate deletion patch between original and modified.
    func CreateThreeWayJSONMergePatch(original, modified, current []byte, fns ...mergepatch.PreconditionFunc) ([]byte, error) {
    	if len(original) == 0 {
    		original = []byte(`{}`)
    	}
    	if len(modified) == 0 {
    		modified = []byte(`{}`)
    	}
    	if len(current) == 0 {
    		current = []byte(`{}`)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/MutableNetwork.java

       *
       * @return {@code true} if the network was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeNode(N node);
    
      /**
       * Removes {@code edge} from this network, if it is present.
       *
       * @return {@code true} if the network was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeEdge(E edge);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
Back to top