Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 300 for reserialized (0.19 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/PlaceholderAssertionError.java

    package org.gradle.internal.serialize;
    
    import org.gradle.internal.UncheckedException;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@code PlaceholderException} is used when an assertion error cannot be serialized or deserialized.
     */
    public class PlaceholderAssertionError extends AssertionError implements PlaceholderExceptionSupport {
        private final String exceptionClassName;
        private final Throwable getMessageException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/ResolvedGraphComponent.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * The final representation of a component in the resolved dependency graph.
     * This is the type that is serialized on resolve and deserialized when we later need to build a `ResolutionResult`.
     */
    public interface ResolvedGraphComponent {
        /**
         * Returns a simple id for this component, unique across components in the same graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/ResolvedGraphDependency.java

    import org.gradle.internal.resolve.ModuleVersionResolveException;
    
    import javax.annotation.Nullable;
    
    /**
     * The final representation of a dependency in the resolved dependency graph.
     * This is the type that is serialized on resolve and deserialized when we later need to build a `ResolutionResult`.
     */
    public interface ResolvedGraphDependency {
    
        ComponentSelector getRequested();
    
        @Nullable
        ModuleVersionResolveException getFailure();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/PlaceholderException.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@code PlaceholderException} is used when an exception cannot be serialized or deserialized.
     */
    @UsedByScanPlugin
    public class PlaceholderException extends RuntimeException implements PlaceholderExceptionSupport {
        private final String exceptionClassName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

    import java.util.IdentityHashMap
    
    
    /**
     * Serialized state of an object graph containing one or more [IsolatedAction]s.
     *
     * @param G type of the root object stored in [graph]
     */
    internal
    class SerializedIsolatedActionGraph<G>(
        /**
         * The serialized graph.
         */
        val graph: ByteArray,
    
        /**
         * External references that are not serialized directly as part of the [graph].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

         */
        TreeFormatter describeContents(TreeFormatter formatter);
    
        /**
         * Calculates the execution time value of this file collection. The resulting value is serialized to the configuration cache
         * and deserialized at execution time, utilizing the logic encapsulated within the value.
         */
        default Optional<FileCollectionExecutionTimeValue> calculateExecutionTimeValue() {
            return Optional.empty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/id/UniqueId.java

    import java.nio.ByteBuffer;
    import java.util.UUID;
    import java.util.regex.Pattern;
    
    /**
     * A more compact / aesthetically pleasing representation of effectively a UUID.
     * <p>
     * Values of this type are serialized and deserialized (as strings) across Gradle versions.
     * The string representation cannot change.
     *
     * @since 4.0
     */
    public final class UniqueId {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                withProblem("Build file 'build.gradle': line 3: registration of listener on 'Gradle.addListener' is unsupported")
                withProblem("Task `:broken` of type `org.gradle.api.DefaultTask`: cannot deserialize object of type 'org.gradle.api.Project' as these are not supported with the configuration cache.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/crypto/x509/pkcs8_test.go

    			continue
    		}
    		reserialised, err := MarshalPKCS8PrivateKey(privKey)
    		if err != nil {
    			t.Errorf("%s: failed to marshal into PKCS#8: %s", test.name, err)
    			continue
    		}
    		if !bytes.Equal(derBytes, reserialised) {
    			t.Errorf("%s: marshaled PKCS#8 didn't match original: got %x, want %x", test.name, reserialised, derBytes)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 16:45:10 UTC 2022
    - 9K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/SerializationTest.kt

        private
        val pluginsSchema: AnalysisSchema = schema
    
        @Test
        fun `schema is serializable`() {
            val serialized = SchemaSerialization.schemaToJsonString(pluginsSchema)
            val deserialized = SchemaSerialization.schemaFromJsonString(serialized)
    
            val result = deserialized.resolve(
                """
                plugins {
                    id("test")
                }
                """.trimIndent()
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top