Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 227 for reserialized (0.37 sec)

  1. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/GradleWorkerMain.java

    /**
     * The main entry point for a worker process that is using the system ClassLoader strategy. Reads worker configuration and a serialized worker action from stdin,
     * sets up the worker ClassLoader, and then delegates to {@link org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker} to deserialize and execute the action.
     */
    public class GradleWorkerMain {
        public void run() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecutionResult.groovy

     * limitations under the License.
     */
    
    package org.gradle.performance.results
    
    import com.fasterxml.jackson.annotation.JsonIgnoreProperties
    
    /**
     * Represents a result of single performance test execution, deserialized from JSON result.
     *
     * @see gradlebuild.performance.ScenarioBuildResultData
     */
    @JsonIgnoreProperties(ignoreUnknown = true)
    class PerformanceTestExecutionResult {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/StreamCodecs.kt

        }
    
        override suspend fun ReadContext.decode(): InputStream? {
            if (readEnum<StreamReference>() == StreamReference.IN) {
                return System.`in`
            }
            logUnsupported("deserialize", InputStream::class, appendix = supportedStreamsInfo())
            return null
        }
    
        private
        fun supportedStreamsInfo(): StructuredMessageBuilder = {
            text(" Only ")
            reference("System.in")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            then:
            problems.assertResultHasProblems(result) {
                withTotalProblemsCount(6)
                withUniqueProblems(
                    "Task `:broken` of type `SomeTask`: cannot deserialize object of type '${baseType.name}' 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
    - 28.3K bytes
    - Viewed (0)
  5. pkg/webhooks/validation/server/server.go

    	"istio.io/istio/pkg/log"
    )
    
    var scope = log.RegisterScope("validationServer", "validation webhook server")
    
    var (
    	runtimeScheme = runtime.NewScheme()
    	codecs        = serializer.NewCodecFactory(runtimeScheme)
    	deserializer  = codecs.UniversalDeserializer()
    
    	// Expect AdmissionRequest to only include these top-level field names
    	validFields = map[string]bool{
    		"apiVersion": true,
    		"kind":       true,
    		"metadata":   true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaSerializationIntegrationTest.groovy

                    }
                }
    
                task ok(type: SomeTask)
            """
    
            when:
            configurationCacheRun "ok"
    
            then: "bean is serialized before task runs"
            outputContains("bean.value = 42")
    
            when:
            configurationCacheRun "ok"
    
            then:
            outputContains("bean.value = 42")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanPropertyReader.kt

                val field = relevantField.field
                val fieldName = field.name
                relevantField.unsupportedFieldType?.let {
                    reportUnsupportedFieldType(it, "deserialize", fieldName)
                }
                readPropertyValue(PropertyKind.Field, fieldName) { fieldValue ->
                    set(bean, field, fieldValue)
                }
            }
            if (bean is ModelObject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

                withProblem("Build file 'build.gradle': line 9: invocation of 'Task.project' at execution time is unsupported.")
                withProblem("Task `:declared` of type `Broken`: cannot deserialize object of type 'org.gradle.api.artifacts.ConfigurationContainer' 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
    - 10.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

            }
        }
    
        private
        fun isolatedActions() = IsolateOwners.OwnerGradle(gradle).let { owner ->
            IsolatedActionDeserializer(owner, owner.serviceOf(), owner.serviceOf())
                .deserialize(isolated)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/BuildActionResult.java

    import org.gradle.tooling.internal.provider.serialization.SerializedPayload;
    
    import javax.annotation.Nullable;
    
    /**
     * Encapsulates either a result object, or a failure as an exception or a serialized exception.
     *
     * <p>Exceptions should always be serialized, but currently are not when the failure happens outside the context of a build invocation because the serialization infrastructure is currently tied to some build scoped services.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top