Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 576 for asSnapshot (0.21 sec)

  1. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingSnapshotFromPluginRepositorySpec.groovy

                        useModule('org.example.plugin:plugin:1.0-SNAPSHOT')
                    }
                }
            """)
    
            when:
            succeeds "pluginTask"
    
            then:
            output.contains("I'm here")
        }
        def "can use dynamic versions and status to depend on snapshot version"() {
            given:
            publishTestPlugin("1.1-SNAPSHOT", "from 1.1")
            publishTestPlugin("1.2", "from 1.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

            assertOrder(X_EQ_Y, "1.0-alpha-snapshot", "1.0.0-alpha-snapshot");
            assertOrder(X_EQ_Y, "1.0.alpha.snapshot", "1.0.0.alpha.snapshot");
    
            assertOrder(X_EQ_Y, "1.x.0-alpha", "1.x.0.0-alpha");
            assertOrder(X_EQ_Y, "1.x.0.alpha", "1.x.0.0.alpha");
            assertOrder(X_EQ_Y, "1.x.0-alpha-snapshot", "1.x.0.0-alpha-snapshot");
            assertOrder(X_EQ_Y, "1.x.0.alpha.snapshot", "1.x.0.0.alpha.snapshot");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. api/maven-api-metadata/src/main/mdo/metadata.mdo

                    }
    
                    Snapshot s = v.getSnapshot();
                    Snapshot snapshot = versioning.getSnapshot();
                    if ( snapshot != null )
                    {
                        boolean updateSnapshotVersions = false;
                        if ( s == null )
                        {
                            s = new Snapshot();
                            v.setSnapshot( s );
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.internal.snapshot.ValueSnapshotter;
    import org.gradle.internal.snapshot.impl.UnknownImplementationSnapshot.UnknownReason;
    
    import javax.annotation.Nullable;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

    import org.gradle.internal.snapshot.impl.IsolatedManagedValue
    import org.gradle.internal.snapshot.impl.IsolatedMap
    import org.gradle.internal.snapshot.impl.IsolatedJavaSerializedValueSnapshot
    import org.gradle.internal.snapshot.impl.IsolatedSet
    import org.gradle.internal.snapshot.impl.MapEntrySnapshot
    import org.gradle.internal.snapshot.impl.NullValueSnapshot
    import org.gradle.internal.snapshot.impl.StringValueSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/DirectorySensitivity.java

         * default behavior is to fingerprint directories, for others, they ignore directories by default.
         */
        DEFAULT(snapshot -> true),
        /**
         * Ignore directories
         */
        IGNORE_DIRECTORIES(snapshot -> snapshot.getType() != FileType.Directory);
    
        @SuppressWarnings("ImmutableEnumChecker")
        private final Predicate<FileSystemLocationSnapshot> fingerprintCheck;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

            TrackingProperties(System.getProperties().uncheckedCast()) { prefix, snapshot ->
                listener.systemPropertiesPrefixedBy(prefix, snapshot)
            }
    
        override fun getVariables(): Environment.Properties =
            TrackingProperties(System.getenv()) { prefix, snapshot ->
                listener.envVariablesPrefixedBy(prefix, snapshot)
            }
    
        private
        class TrackingProperties(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

    import org.gradle.internal.snapshot.CompositeFileSystemSnapshot;
    import org.gradle.internal.snapshot.DirectorySnapshot;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.MissingFileSnapshot;
    import org.gradle.internal.snapshot.PathUtil;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. .teamcity/src/test/kotlin/PromotionProjectTests.kt

            assertEquals(10, model.buildTypes.size)
            assertEquals(
                listOf("SanityCheck", "Nightly Snapshot", "Nightly Snapshot (from QuickFeedback)", "Nightly Snapshot (from QuickFeedback) - Check Ready", "Nightly Snapshot (from QuickFeedback) - Upload", "Nightly Snapshot (from QuickFeedback) - Promote", "Publish Branch Snapshot (from Quick Feedback)", "Release - Milestone", "Start Release Cycle", "Start Release Cycle Test"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

    import org.gradle.internal.file.FileHierarchySet;
    import org.gradle.internal.file.FileMetadata;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshotHierarchyVisitor;
    import org.gradle.internal.snapshot.SnapshotHierarchy;
    import org.gradle.internal.snapshot.SnapshotVisitResult;
    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top