Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 8,729 for v$ (0.11 sec)

  1. internal/dsync/lock-args_gen_test.go

    	}
    }
    
    func BenchmarkMarshalMsgLockArgs(b *testing.B) {
    	v := LockArgs{}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgLockArgs(b *testing.B) {
    	v := LockArgs{}
    	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: Tue Nov 21 01:09:35 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/SetMultimapTestSuiteBuilder.java

        }
      }
    
      static class MultimapGetGenerator<K, V>
          extends MultimapTestSuiteBuilder.MultimapGetGenerator<K, V, SetMultimap<K, V>>
          implements TestSetGenerator<V> {
        public MultimapGetGenerator(
            OneSizeTestContainerGenerator<SetMultimap<K, V>, Entry<K, V>> multimapGenerator) {
          super(multimapGenerator);
        }
    
        @Override
        public Set<V> create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite_test.go

    	}
    
    	for i, v := range tests {
    		result := encodePPC64RotateMask(v.rotate, int64(v.mask), v.nbits)
    		if result != v.encoded {
    			t.Errorf("encodePPC64RotateMask(%d,0x%x,%d) = 0x%x, expected 0x%x", v.rotate, v.mask, v.nbits, result, v.encoded)
    		}
    		rotate, mb, me, mask := DecodePPC64RotateMask(result)
    		if rotate != v.rotate || mb != v.mb || me != v.me || mask != v.mask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 21:57:02 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/cse.go

    func cse(f *Func) {
    	// Two values are equivalent if they satisfy the following definition:
    	// equivalent(v, w):
    	//   v.op == w.op
    	//   v.type == w.type
    	//   v.aux == w.aux
    	//   v.auxint == w.auxint
    	//   len(v.args) == len(w.args)
    	//   v.block == w.block if v.op == OpPhi
    	//   equivalent(v.args[i], w.args[i]) for i in 0..len(v.args)-1
    
    	// The algorithm searches for a partition of f's values into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules_test.go

    			},
    			match: attrList(
    				a("g", "v", "r", "exec", "name", admission.Create, &metav1.CreateOptions{}),
    				a("2", "v", "r2", "proxy", "name", admission.Create, &metav1.CreateOptions{}),
    				a("2", "v", "r3", "proxy", "name", admission.Create, &metav1.CreateOptions{}),
    			),
    			noMatch: attrList(
    				a("g", "v", "r", "", "name", admission.Create, &metav1.CreateOptions{}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 23:28:16 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/phiopt.go

    	a := b0.Controls[0]
    	if negate {
    		a = v.Block.NewValue1(v.Pos, OpNot, a.Type, a)
    	}
    	v.AddArg(a)
    
    	cvt := v.Block.NewValue1(v.Pos, OpCvtBoolToUint8, v.Block.Func.Config.Types.UInt8, a)
    	switch v.Type.Size() {
    	case 1:
    		v.reset(OpCopy)
    	case 2:
    		v.reset(OpZeroExt8to16)
    	case 4:
    		v.reset(OpZeroExt8to32)
    	case 8:
    		v.reset(OpZeroExt8to64)
    	default:
    		v.Fatalf("bad int size %d", v.Type.Size())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritegeneric.go

    	case OpZeroExt32to64:
    		return rewriteValuegeneric_OpZeroExt32to64(v)
    	case OpZeroExt8to16:
    		return rewriteValuegeneric_OpZeroExt8to16(v)
    	case OpZeroExt8to32:
    		return rewriteValuegeneric_OpZeroExt8to32(v)
    	case OpZeroExt8to64:
    		return rewriteValuegeneric_OpZeroExt8to64(v)
    	}
    	return false
    }
    func rewriteValuegeneric_OpAdd16(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top