Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for typemap (0.11 sec)

  1. src/runtime/type.go

    				}
    			}
    			typehash[t.Hash] = append(tlist, t)
    		}
    
    		if md.typemap == nil {
    			// If any of this module's typelinks match a type from a
    			// prior module, prefer that prior type by adding the offset
    			// to this module's typemap.
    			tm := make(map[typeOff]*_type, len(md.typelinks))
    			pinnedTypemaps = append(pinnedTypemaps, tm)
    			md.typemap = tm
    			for _, tl := range md.typelinks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    			}
    		}
    	}
    }
    
    func TestSchemaDeclTypes(t *testing.T) {
    	ts := testSchema()
    	cust := SchemaDeclType(ts, true).MaybeAssignTypeName("CustomObject")
    	typeMap := apiservercel.FieldTypeMap("CustomObject", cust)
    	nested, _ := cust.FindField("nested")
    	metadata, _ := cust.FindField("metadata")
    	expectedObjTypeMap := map[string]*apiservercel.DeclType{
    		"CustomObject":          cust,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/ureader.go

    	case pkgbits.TypeArray:
    		len := int64(r.Uint64())
    		return types.NewArray(r.typ(), len)
    	case pkgbits.TypeChan:
    		dir := types.ChanDir(r.Len())
    		return types.NewChan(dir, r.typ())
    	case pkgbits.TypeMap:
    		return types.NewMap(r.typ(), r.typ())
    	case pkgbits.TypePointer:
    		return types.NewPointer(r.typ())
    	case pkgbits.TypeSignature:
    		return r.signature(nil, nil, nil)
    	case pkgbits.TypeSlice:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    	modulehashes []modulehash
    
    	hasmain uint8 // 1 if module contains the main function, 0 otherwise
    	bad     bool  // module failed to load and should be ignored
    
    	gcdatamask, gcbssmask bitvector
    
    	typemap map[typeOff]*_type // offset to *_rtype in previous module
    
    	next *moduledata
    }
    
    // A modulehash is used to compare the ABI of a new module or a
    // package in a new module with the loaded program.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    		return true
    	}
    	name := ldr.SymName(s)
    	if strings.HasPrefix(name, "go:itab.") {
    		return true
    	}
    	if strings.HasPrefix(name, "type:") && !strings.HasPrefix(name, "type:.") {
    		// reduce runtime typemap pressure, but do not
    		// export alg functions (type:.*), as these
    		// appear in pclntable.
    		return true
    	}
    	if strings.HasPrefix(name, "go:link.pkghash") {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/extensions.go

    }
    
    func workloadModeForListenerClass(class istionetworking.ListenerClass) typeapi.WorkloadMode {
    	switch class {
    	case istionetworking.ListenerClassGateway:
    		return typeapi.WorkloadMode_CLIENT
    	case istionetworking.ListenerClassSidecarInbound:
    		return typeapi.WorkloadMode_SERVER
    	case istionetworking.ListenerClassSidecarOutbound:
    		return typeapi.WorkloadMode_CLIENT
    	case istionetworking.ListenerClassUndefined:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            "LinkedHashMap<String, Integer>"     | "new LinkedHashMap([a: 1, b: 2])"         | "[a:1, b:2]"
            "TreeMap<String, Integer>"           | "new TreeMap([a: 1, b: 2])"               | "[a:1, b:2]"
            "TreeMap<String, Integer>"           | treeMapWithComparator()                   | "[b:2, a:1]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

    import java.io.File;
    import java.nio.charset.Charset;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    public class JvmOptions {
        private static final String XMS_PREFIX = "-Xms";
        private static final String XMX_PREFIX = "-Xmx";
        private static final String BOOTCLASSPATH_PREFIX = "-Xbootclasspath:";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            "LinkedHashMap<String, Integer>"     | "new LinkedHashMap([a: 1, b: 2])"         | "[a:1, b:2]"
            "TreeMap<String, Integer>"           | "new TreeMap([a: 1, b: 2])"               | "[a:1, b:2]"
            "TreeMap<String, Integer>"           | treeMapWithComparator()                   | "[b:2, a:1]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

    import org.gradle.model.internal.type.ModelType;
    
    import javax.annotation.Nullable;
    import java.util.Collections;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    import static org.gradle.model.internal.core.ModelNode.State.Created;
    import static org.gradle.model.internal.core.ModelNode.State.Initialized;
    
    class ModelElementNode extends ModelNodeInternal {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top