Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,309 for MODIFIED (0.16 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

         *
         * The source code of all source [KtModule]s in the project should be considered modified when this event is received. This includes
         * source files being moved or removed. Thus, all caches related to source code and source files should be invalidated.
         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
         * contents may be kept.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceModuleStateModificationListener.kt

         * received. This includes source files being moved or removed, and source modules possibly being removed. Thus, all caches related to
         * source module structure and source code should be invalidated.
         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ChangeTypeInternal.java

     */
    
    package org.gradle.internal.execution.history.changes;
    
    import org.gradle.work.ChangeType;
    
    public enum ChangeTypeInternal {
        ADDED("has been added", ChangeType.ADDED),
        MODIFIED("has changed", ChangeType.MODIFIED),
        REMOVED("has been removed", ChangeType.REMOVED);
    
        private final String description;
        private final ChangeType publicType;
    
        ChangeTypeInternal(String description, ChangeType publicType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. pkg/kubelet/container/cache.go

    	Delete(types.UID)
    	UpdateTime(time.Time)
    }
    
    type data struct {
    	// Status of the pod.
    	status *PodStatus
    	// Error got when trying to inspect the pod.
    	err error
    	// Time when the data was last modified.
    	modified time.Time
    }
    
    type subRecord struct {
    	time time.Time
    	ch   chan *data
    }
    
    // cache implements Cache.
    type cache struct {
    	// Lock which guards all internal data structures.
    	lock sync.RWMutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/TrivialChangeDetectorTest.groovy

            0 * _
        }
    
        def "detects normalized content modified"() {
            when:
            detector.visitChangesSince([one: 1], [one: -1], "test", visitor)
            then:
            1 * itemComparator.hasSamePath(1, -1) >> true
            1 * itemComparator.hasSameContent(1, -1) >> false
            then:
            1 * changeFactory.modified("one", "test", 1, -1) >> change
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/transforms/InstrumentationMetadataTransform.kt

    import org.gradle.api.file.FileType
    import org.gradle.api.provider.Provider
    import org.gradle.api.tasks.Classpath
    import org.gradle.work.ChangeType.ADDED
    import org.gradle.work.ChangeType.MODIFIED
    import org.gradle.work.ChangeType.REMOVED
    import org.gradle.work.DisableCachingByDefault
    import org.gradle.work.FileChange
    import org.gradle.work.InputChanges
    import java.io.File
    import java.util.Properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NormalizedPathChangeDetector.java

                    filePathWithTypes.remove(filePathWithType);
                    return modified(propertyTitle, previousFingerprintType, normalizedPath, filePathWithType);
                })
                .orElseGet(() -> removed(propertyTitle, normalizedPath, pathWithType));
        }
    
        private static Change modified(
            String propertyTitle,
            FileType previousFingerprintType,
            String normalizedPath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/DefaultFileChangeTest.groovy

    import org.gradle.internal.file.FileType
    import spock.lang.Specification
    
    class DefaultFileChangeTest extends Specification {
    
        def "change message for ChangeType MODIFIED from #previous to #current is '#message'"() {
            expect:
            DefaultFileChange.modified("somePath", "test", previous, current, "").message == "test file somePath ${message}."
    
            where:
            previous             | current              | message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/management/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: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. src/packaging/deb/init.d/fess

    #
    # Written by Miquel van Smoorenburg <******@****.***>.
    # Modified for Debian GNU/Linux	by Ian Murdock <******@****.***>.
    # Modified for Tomcat by Stefan Gybas <******@****.***>.
    # Modified for Tomcat6 by Thierry Carrez <******@****.***>.
    # Additional improvements by Jason Brittain <******@****.***>.
    # Modified by Nicolas Huray for Fess <******@****.***>.
    #
    ### BEGIN INIT INFO
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top