Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 222 for reserialized (0.19 sec)

  1. src/encoding/json/encode_test.go

    		want: `{"X":6}`,
    	}, {
    		// Unexported embedded field of non-struct type should not be serialized.
    		CaseName: Name("UnexportedEmbeddedInt"),
    		makeInput: func() any {
    			type (
    				myInt int
    				S     struct{ myInt }
    			)
    			return S{5}
    		},
    		want: `{}`,
    	}, {
    		// Exported embedded field of non-struct type should be serialized.
    		CaseName: Name("ExportedEmbeddedInt"),
    		makeInput: func() any {
    			type (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/RunBuildAction.java

                );
                if (result.hasFailure()) {
                    // Don't need to unpack the serialized failure. It will already have been reported and is not used by anything downstream of this action.
                    throw new ReportedException();
                }
            } finally {
                stoppable.stop();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	// MinDurationSizeJSON
    	// Golang allows a string of 0 to be parsed as a duration, so that plus 2 to account for
    	// quotation marks makes 3
    	MinDurationSizeJSON = 3
    	// JSONDateSize is the size of a date serialized as part of a JSON object
    	// RFC 3339 dates require YYYY-MM-DD, and then we add 2 to allow for quotation marks
    	JSONDateSize = 12
    	// MinDatetimeSizeJSON is the minimal length of a datetime formatted as RFC 3339
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DaemonContext.java

     * <p>
     * This is used by clients to determine whether or not a daemon meets its requirements
     * such as JDK version, special system properties etc.
     * <p>
     * Instances are serialized by {@link org.gradle.launcher.daemon.context.DefaultDaemonContext.Serializer}
     * and shared via the Daemon Registry.
     *
     * Implementation is immutable.
     *
     * @see DaemonCompatibilitySpec
     * @see DaemonRequestContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. tensorflow/c/tf_buffer.cc

      }
      if (!in.SerializeWithCachedSizesToArray(static_cast<uint8_t*>(buf))) {
        port::Free(buf);
        return errors::InvalidArgument(
            "Unable to serialize ", in.GetTypeName(),
            " protocol buffer, perhaps the serialized size (", proto_size,
            " bytes) is too large?");
      }
      out->data = buf;
      out->length = proto_size;
      out->data_deallocator = [](void* data, size_t length) { port::Free(data); };
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

                "--add-opens=java.base/java.net=ALL-UNNAMED", // required by JavaObjectSerializationCodec
                "--add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED" // serialized from org.gradle.internal.file.StatStatistics$Collector
            ));
            gradleDaemonJvmArgs.addAll(configurationCacheJpmsArgs);
    
            GRADLE_DAEMON_JPMS_ARGS = Collections.unmodifiableList(gradleDaemonJvmArgs);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. cmd/object-api-datatypes_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = BackendType(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BackendType) Msgsize() (s int) {
    	s = msgp.IntSize
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z *BucketInfo) MarshalMsg(b []byte) (o []byte, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  8. cmd/storage-datatypes_gen.go

    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BaseOptions) Msgsize() (s int) {
    	s = 1
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *CheckPartsHandlerParams) DecodeMsg(dc *msgp.Reader) (err error) {
    	var field []byte
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

            // Treat all parameters equally, regardless of whether they are implicit captured parameters or the lambda signature ones.
            // If any of them is of an unsupported type, a build that runs from the serialized state won't be able to provide an instance anyway.
            paramTypes.forEach { paramType ->
                unsupportedTypes[paramType]?.let { unsupportedKClass ->
                    logUnsupportedLambdaParameterType(unsupportedKClass)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/StoringInterpretationSchemaBuilder.kt

    import org.gradle.internal.declarativedsl.serialization.SchemaSerialization
    import java.io.File
    
    
    /**
     * In addition to creating the interpretation schema by delegating to [schemaBuilder],
     * stores the produced serialized schema in the file system (under `.gradle/declarative-schema/...` in the project).
     */
    internal
    class StoringInterpretationSchemaBuilder(
        private val schemaBuilder: InterpretationSchemaBuilder,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top