Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 8,729 for v$ (0.04 sec)

  1. src/cmd/compile/internal/typecheck/const.go

    		}
    
    	case constant.String:
    		if t.IsString() {
    			return v
    		}
    
    	case constant.Int:
    		if explicit && t.IsString() {
    			return tostr(v)
    		}
    		fallthrough
    	case constant.Float, constant.Complex:
    		switch {
    		case t.IsInteger():
    			v = toint(v)
    			return v
    		case t.IsFloat():
    			v = toflt(v)
    			v = truncfltlit(v, t)
    			return v
    		case t.IsComplex():
    			v = tocplx(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMap.java

       * @since 31.0
       */
      public static <K, V> ImmutableMap<K, V> of(
          K k1,
          V v1,
          K k2,
          V v2,
          K k3,
          V v3,
          K k4,
          V v4,
          K k5,
          V v5,
          K k6,
          V v6,
          K k7,
          V v7,
          K k8,
          V v8,
          K k9,
          V v9,
          K k10,
          V v10) {
        return RegularImmutableMap.fromEntries(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  3. src/go/parser/testdata/map.go2

    import "chans"
    
    // Map is an ordered map.
    type Map[K, V any] struct {
    	root    *node[K, V]
    	compare func(K, K) int
    }
    
    // node is the type of a node in the binary tree.
    type node[K, V any] struct {
    	key         K
    	val         V
    	left, right *node[K, V]
    }
    
    // New returns a new map.
    func New[K, V any](compare func(K, K) int) *Map[K, V] {
            return &Map[K, V]{compare: compare}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 19:44:06 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  4. test/ken/range.go

    }
    
    func init() {
    	p = make([]byte, size)
    	m = make(map[int]byte)
    	for k := 0; k < size; k++ {
    		v := f(k)
    		a[k] = v
    		p[k] = v
    		m[k] = v
    	}
    }
    
    func main() {
    	var i int
    
    	/*
    	 * key only
    	 */
    	i = 0
    	for k := range a {
    		v := a[k]
    		if v != f(k) {
    			println("key array range", k, v, a[k])
    			panic("fail")
    		}
    		i++
    	}
    	if i != size {
    		println("key array size", i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/testdata/map.go

    import "chans"
    
    // Map is an ordered map.
    type Map[K, V any] struct {
    	root    *node[K, V]
    	compare func(K, K) int
    }
    
    // node is the type of a node in the binary tree.
    type node[K, V any] struct {
    	key         K
    	val         V
    	left, right *node[K, V]
    }
    
    // New returns a new map.
    func New[K, V any](compare func(K, K) int) *Map[K, V] {
            return &Map[K, V]{compare: compare}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractBiMap.java

      }
    
      @LazyInit @CheckForNull private transient Set<Entry<K, V>> entrySet;
    
      @Override
      public Set<Entry<K, V>> entrySet() {
        Set<Entry<K, V>> result = entrySet;
        return (result == null) ? entrySet = new EntrySet() : result;
      }
    
      class BiMapEntry extends ForwardingMapEntry<K, V> {
        private final Entry<K, V> delegate;
    
        BiMapEntry(Entry<K, V> delegate) {
          this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	case OpBitLen32:
    		return rewriteValueMIPS_OpBitLen32(v)
    	case OpClosureCall:
    		v.Op = OpMIPSCALLclosure
    		return true
    	case OpCom16:
    		return rewriteValueMIPS_OpCom16(v)
    	case OpCom32:
    		return rewriteValueMIPS_OpCom32(v)
    	case OpCom8:
    		return rewriteValueMIPS_OpCom8(v)
    	case OpConst16:
    		return rewriteValueMIPS_OpConst16(v)
    	case OpConst32:
    		return rewriteValueMIPS_OpConst32(v)
    	case OpConst32F:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/TableCollectors.java

        void put(R row, C column, V value, BinaryOperator<V> merger) {
          MutableCell<R, C, V> oldCell = table.get(row, column);
          if (oldCell == null) {
            MutableCell<R, C, V> cell = new MutableCell<>(row, column, value);
            insertionOrder.add(cell);
            table.put(row, column, cell);
          } else {
            oldCell.merge(value, merger);
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. internal/s3select/sql/value.go

    }
    
    func (v *Value) setString(s string) {
    	v.value = s
    }
    
    func (v *Value) setBool(b bool) {
    	v.value = b
    }
    
    func (v *Value) setTimestamp(t time.Time) {
    	v.value = t
    }
    
    func (v Value) String() string {
    	return fmt.Sprintf("%#v", v.value)
    }
    
    // CSVString - convert to string for CSV serialization
    func (v Value) CSVString() string {
    	switch x := v.value.(type) {
    	case nil, Missing:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritedec.go

    import "cmd/compile/internal/types"
    
    func rewriteValuedec(v *Value) bool {
    	switch v.Op {
    	case OpArrayMake1:
    		return rewriteValuedec_OpArrayMake1(v)
    	case OpArraySelect:
    		return rewriteValuedec_OpArraySelect(v)
    	case OpComplexImag:
    		return rewriteValuedec_OpComplexImag(v)
    	case OpComplexReal:
    		return rewriteValuedec_OpComplexReal(v)
    	case OpIData:
    		return rewriteValuedec_OpIData(v)
    	case OpIMake:
    		return rewriteValuedec_OpIMake(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
Back to top