Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 8,729 for v$ (0.04 sec)

  1. src/main/java/org/codelibs/fess/entity/ParamMap.java

        @Override
        public V compute(final K key, final BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
            // use original key
            return parent.compute(key, remappingFunction);
        }
    
        @Override
        public V merge(final K key, final V value, final BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
            // use original key
            return parent.merge(key, value, remappingFunction);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  3. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

       *
       * @param <K> the base key type
       * @param <V> the base value type
       */
      public static class LocalManualCache<K, V> extends AbstractCache<K, V> {
        final LocalCache<K, V> localCache;
    
        LocalManualCache(CacheBuilder<? super K, ? super V> builder) {
          this(builder, null);
        }
    
        protected LocalManualCache(
            CacheBuilder<? super K, ? super V> builder, CacheLoader<? super K, V> loader) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSetMultimap.java

       * an entry (according to {@link Object#equals}) after the first are ignored.
       */
      public static <K, V> ImmutableSetMultimap<K, V> of(
          K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
        ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder();
        builder.put(k1, v1);
        builder.put(k2, v2);
        builder.put(k3, v3);
        builder.put(k4, v4);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. cmd/bucket-stats_gen_test.go

    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgBucketStats(b *testing.B) {
    	v := BucketStats{}
    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		bts, _ = v.MarshalMsg(bts[0:0])
    	}
    }
    
    func BenchmarkUnmarshalBucketStats(b *testing.B) {
    	v := BucketStats{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 30 08:00:59 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/abt/avlint32_test.go

    				te.Errorf("Wrong tree size %v, expected %v for old %v", i, j, old.DebugString())
    			}
    		}
    		s, i := t.wellFormed()
    		if s != "" {
    			te.Errorf("Tree consistency problem at %v", s)
    			return
    		}
    		if i != k {
    			te.Errorf("Wrong tree size %v, expected %v for %v", i, k, t.DebugString())
    			return
    		}
    		if t.Size() != k {
    			te.Errorf("Wrong t.Size() %v, expected %v for %v", t.Size(), k, t.DebugString())
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v1_gen_test.go

    	}
    }
    
    func BenchmarkMarshalMsgChecksumInfo(b *testing.B) {
    	v := ChecksumInfo{}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgChecksumInfo(b *testing.B) {
    	v := ChecksumInfo{}
    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    	b.ReportAllocs()
    	b.ResetTimer()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 13.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       */
      public static <K extends Comparable<? super K>, V> ImmutableSortedMap<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 fromEntries(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. src/runtime/race/testdata/time_test.go

    )
    
    func TestNoRaceAfterFunc(_ *testing.T) {
    	v := 0
    	_ = v
    	c := make(chan int)
    	f := func() {
    		v = 1
    		c <- 0
    	}
    	v = 2
    	time.AfterFunc(1, f)
    	<-c
    	v = 3
    }
    
    func TestNoRaceAfterFuncReset(_ *testing.T) {
    	v := 0
    	_ = v
    	c := make(chan int)
    	f := func() {
    		v = 1
    		c <- 0
    	}
    	t := time.AfterFunc(time.Hour, f)
    	t.Stop()
    	v = 2
    	t.Reset(1)
    	<-c
    	v = 3
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:34:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/expvar/expvar.go

    }
    
    // Init removes all keys from the map.
    func (v *Map) Init() *Map {
    	v.keysMu.Lock()
    	defer v.keysMu.Unlock()
    	v.keys = v.keys[:0]
    	v.m.Clear()
    	return v
    }
    
    // addKey updates the sorted list of keys in v.keys.
    func (v *Map) addKey(key string) {
    	v.keysMu.Lock()
    	defer v.keysMu.Unlock()
    	// Using insertion sort to place key into the already-sorted v.keys.
    	i, found := slices.BinarySearch(v.keys, key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top