Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for typemap (0.1 sec)

  1. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/CollectionCodecs.kt

     */
    val propertiesCodec: Codec<Properties> = mapCodec { Properties() }
    
    
    val treeMapCodec: Codec<TreeMap<Any?, Any?>> = codec(
        {
            write(it.comparator())
            writeMap(it)
        },
        {
            @Suppress("unchecked_cast")
            val comparator = read() as Comparator<Any?>?
            readMapInto { TreeMap(comparator) }
        }
    )
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousGraphVariantsFailureDescriber.java

    import org.gradle.internal.logging.text.StyledTextOutput;
    import org.gradle.internal.logging.text.TreeFormatter;
    
    import java.util.List;
    import java.util.Map;
    import java.util.Optional;
    import java.util.TreeMap;
    
    import static org.gradle.internal.exceptions.StyledException.style;
    
    /**
     * A {@link ResolutionFailureDescriber} that describes a generic {@link VariantAwareAmbiguousResolutionFailure}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/xdsgen.go

    		VersionInfo: req.Push.PushVersion,
    		Nonce:       nonce(req.Push.LedgerVersion),
    		Resources:   xds.ResourcesToAny(res),
    	}
    
    	configSize := ResourceSize(res)
    	configSizeBytes.With(typeTag.Value(w.TypeUrl)).Record(float64(configSize))
    
    	ptype := "PUSH"
    	if logdata.Incremental {
    		ptype = "PUSH INC"
    	}
    
    	if err := xds.Send(con, resp); err != nil {
    		if recordSendError(w.TypeUrl, err) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top