Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 212 for typemap (0.31 sec)

  1. src/cmd/compile/internal/ssa/branchelim_test.go

    			case "int8":
    				intType = c.config.Types.Int8
    			default:
    				t.Fatal("invalid integer type:", data.intType)
    			}
    			fun := c.Fun("entry",
    				Bloc("entry",
    					Valu("start", OpInitMem, types.TypeMem, 0, nil),
    					Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    					Valu("const1", OpConst32, intType, 1, nil),
    					Valu("const2", OpConst32, intType, 2, nil),
    					Valu("addr", OpAddr, boolType.PtrTo(), 0, nil, "sb"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/internal/CacheVersionMapping.java

    import com.google.common.base.Optional;
    import com.google.common.base.Preconditions;
    import org.gradle.util.GradleVersion;
    
    import java.util.Map;
    import java.util.NavigableMap;
    import java.util.TreeMap;
    
    public class CacheVersionMapping {
    
        private static final Function<Map.Entry<GradleVersion, CacheVersion>, CacheVersion> TO_VALUE = new Function<Map.Entry<GradleVersion, CacheVersion>, CacheVersion>() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 30 20:23:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/format.go

    	return nil, fmt.Errorf("type conversion error from 'Format' to '%v'", typeDesc)
    }
    
    func (d *Format) ConvertToType(typeVal ref.Type) ref.Val {
    	switch typeVal {
    	case FormatType:
    		return d
    	case types.TypeType:
    		return FormatType
    	default:
    		return types.NewErr("type conversion error from '%s' to '%s'", FormatType, typeVal)
    	}
    }
    
    func (d *Format) Equal(other ref.Val) ref.Val {
    	otherDur, ok := other.(*Format)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/ip.go

    }
    
    // ConvertToType implements ref.Val.ConvertToType.
    func (d IP) ConvertToType(typeVal ref.Type) ref.Val {
    	switch typeVal {
    	case IPType:
    		return d
    	case types.TypeType:
    		return IPType
    	case types.StringType:
    		return types.String(d.Addr.String())
    	}
    	return types.NewErr("type conversion error from '%s' to '%s'", IPType, typeVal)
    }
    
    // Equal implements ref.Val.Equal.
    func (d IP) Equal(other ref.Val) ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:33 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/url.go

    }
    
    // ConvertToType implements ref.Val.ConvertToType.
    func (d URL) ConvertToType(typeVal ref.Type) ref.Val {
    	switch typeVal {
    	case typeValue:
    		return d
    	case types.TypeType:
    		return typeValue
    	}
    	return types.NewErr("type conversion error from '%s' to '%s'", typeValue, typeVal)
    }
    
    // Equal implements ref.Val.Equal.
    func (d URL) Equal(other ref.Val) ref.Val {
    	otherDur, ok := other.(URL)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java

      public SafeTreeMap() {
        this(new TreeMap<K, V>());
      }
    
      public SafeTreeMap(Comparator<? super K> comparator) {
        this(new TreeMap<K, V>(comparator));
      }
    
      public SafeTreeMap(Map<? extends K, ? extends V> map) {
        this(new TreeMap<K, V>(map));
      }
    
      public SafeTreeMap(SortedMap<K, ? extends V> map) {
        this(new TreeMap<K, V>(map));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/shift_test.go

    }
    
    func makeConstShiftFunc(c *Conf, amount int64, op Op, typ *types.Type) fun {
    	ptyp := c.config.Types.BytePtr
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("SP", OpSP, c.config.Types.Uintptr, 0, nil),
    			Valu("argptr", OpOffPtr, ptyp, 8, nil, "SP"),
    			Valu("resptr", OpOffPtr, ptyp, 16, nil, "SP"),
    			Valu("load", OpLoad, typ, 0, nil, "argptr", "mem"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java

      public SafeTreeMap() {
        this(new TreeMap<K, V>());
      }
    
      public SafeTreeMap(Comparator<? super K> comparator) {
        this(new TreeMap<K, V>(comparator));
      }
    
      public SafeTreeMap(Map<? extends K, ? extends V> map) {
        this(new TreeMap<K, V>(map));
      }
    
      public SafeTreeMap(SortedMap<K, ? extends V> map) {
        this(new TreeMap<K, V>(map));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/copyelim_test.go

    	c := testConfig(b)
    
    	values := make([]interface{}, 0, n+2)
    	values = append(values, Valu("mem", OpInitMem, types.TypeMem, 0, nil))
    	last := "mem"
    	for i := 0; i < n; i++ {
    		name := fmt.Sprintf("copy%d", i)
    		values = append(values, Valu(name, OpCopy, types.TypeMem, 0, nil, last))
    		last = name
    	}
    	values = append(values, Exit(last))
    	// Reverse values array to make it hard
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 23:01:51 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MutableClassDetails.java

    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    class MutableClassDetails implements ClassDetails {
        private final Class<?> type;
        private final MethodSet instanceMethods = new MethodSet();
        private final Map<String, MutablePropertyDetails> properties = new TreeMap<String, MutablePropertyDetails>();
        private final List<Method> methods = new ArrayList<Method>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top