Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,309 for MODIFIED (0.16 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementInjector.java

                            if (merged != dependency) {
                                dependencies.put(key, merged);
                                modified = true;
                            }
                        }
                    }
    
                    if (modified) {
                        List<Dependency> newDeps = new ArrayList<>(dependencies.size());
                        for (Dependency dep : model.getDependencies()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/work/FileChange.java

         */
        ChangeType getChangeType();
    
        /**
         * The file type of the file.
         *
         * <p>
         *     For {@link ChangeType#ADDED} and {@link ChangeType#MODIFIED}, the type of the file which was added/modified is reported.
         *     For {@link ChangeType#REMOVED} the type of the file which was removed is reported.
         * </p>
         */
        FileType getFileType();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 06 13:15:59 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

              conditionValue = etag
            }
    
            lastModified != null -> {
              conditionName = "If-Modified-Since"
              conditionValue = lastModifiedString
            }
    
            servedDate != null -> {
              conditionName = "If-Modified-Since"
              conditionValue = servedDateString
            }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PalantirConsistentVersionsPluginSmokeTest.groovy

                .expectLegacyDeprecationWarning("Mutating the...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/local/DefaultLocallyAvailableResourceTest.groovy

            resource.contentLength == origin.length()
            resource.lastModified == origin.lastModified()
        }
    
        def "sha1 content length and last modified do not change when file is subsequently modified"() {
            given:
            def origin = tmpDir.file("origin")
            origin << "some text"
    
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/generator/XmlPersistableConfigurationObjectTest.groovy

        }
    
        def storesToXmlFile() {
            object.loadDefaults()
            rootElement = 'modified-xml'
            def outputFile = tmpDir.file('output.xml')
    
            when:
            object.store(outputFile)
    
            then:
            outputFile.text == TextUtil.toPlatformLineSeparators('<?xml version="1.0" encoding="UTF-8"?>\n<root name="modified-xml"/>\n')
        }
    
        def "can add transform Actions"() {
            object.loadDefaults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. pkg/registry/apps/controllerrevision/strategy_test.go

    		valid       = newControllerRevision("validname", "validns", newObject(), 0)
    		changedData = newControllerRevision("validname", "validns",
    			func() runtime.Object {
    				modified := newObject()
    				ss := modified.(*apps.StatefulSet)
    				ss.Name = "cde"
    				return modified
    			}(), 0)
    		changedRevision = newControllerRevision("validname", "validns", newObject(), 1)
    	)
    
    	cases := []struct {
    		name       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

        def "should report the changes when files are modified #changesCount"(changesCount) {
            given:
            def inputFiles = (1..changesCount).collect { inputDir.file("input${it}.txt") }
            inputFiles.each { it.text = 'New input file' }
            boolean expectMoreChanges = (changesCount > changesLimit)
    
            when:
            succeeds("theTask")
            inputFiles.each { it.text = 'File modified' }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintCompareStrategy.java

            }
    
            @Override
            public Change modified(String path, String propertyTitle, FileSystemLocationFingerprint previous, FileSystemLocationFingerprint current) {
                return DefaultFileChange.modified(path, propertyTitle, previous.getType(), current.getType(), current.getNormalizedPath());
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

        default ModelSource resolveModel(Parent parent, AtomicReference<Parent> modified)
                throws UnresolvableModelException {
            org.apache.maven.model.Parent p = new org.apache.maven.model.Parent(parent);
            ModelSource result = resolveModel(p);
            if (p.getDelegate() != parent) {
                modified.set(p.getDelegate());
            }
            return result;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top