Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/DefaultInstrumentationAnalysisSerializer.java

                return readMetadata(decoder);
            } catch (Exception e) {
                throw new IllegalStateException("Could not deserialize analysis from a file: " + input, e);
            }
        }
    
        @Override
        public Map<String, Set<String>> readTypeHierarchyAnalysis(File input) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/JavaRecordCodec.kt

                    reportUnsupportedFieldType(it, "deserialize", fieldName)
                }
                readPropertyValue(PropertyKind.Field, fieldName) { fieldValue ->
                    if (fieldValue == null || field.type.isInstance(fieldValue) || field.type.isPrimitive) {
                        args.add(fieldValue)
                    } else {
                        logPropertyProblem("deserialize") {
                            text("value ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback.mlir

    // CHECK-LABEL: func @main
    // CHECK-SAME: {{.*}} !tfrt.chain
    // CHECK-SAME: [[serialized:%.*]]: !tfrt_fallback.tf_tensor
    func.func @main(%serialized: tensor<32x!tf_type.string>) -> (tensor<?x2xi64>) attributes {tf.entry_function = {inputs = "input0", outputs = "ParseExample/ParseExampleV2"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilder.java

                ResolvedVariantResult fromVariant = fromComponent.getVariant(d.getFromVariant());
                if (fromVariant == null) {
                    throw new IllegalStateException("Corrupt serialized resolution result. Cannot find variant (" + d.getFromVariant() + ") for " + (d.isConstraint() ? "constraint " : "") + fromComponent + " -> " + d.getRequested().getDisplayName());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top