Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 8,729 for v$ (0.06 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/DerivedGoogleCollectionGenerators.java

          implements TestSetGenerator<V>, DerivedGenerator {
        private final OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> mapGenerator;
        private final SampleElements<V> samples;
    
        public BiMapValueSetGenerator(
            OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> mapGenerator) {
          this.mapGenerator = mapGenerator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. test/codegen/shift.go

    }
    
    func checkShiftAndMask32(v []uint32) {
    	i := 0
    
    	// ppc64x: "RLWNM\t[$]24, R[0-9]+, [$]12, [$]19, R[0-9]+"
    	v[i] = (v[i] & 0xFF00000) >> 8
    	i++
    	// ppc64x: "RLWNM\t[$]26, R[0-9]+, [$]22, [$]29, R[0-9]+"
    	v[i] = (v[i] & 0xFF00) >> 6
    	i++
    	// ppc64x: "MOVW\tR0"
    	v[i] = (v[i] & 0xFF) >> 8
    	i++
    	// ppc64x: "MOVW\tR0"
    	v[i] = (v[i] & 0xF000000) >> 28
    	i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. cmd/bucket-replication-metrics_gen_test.go

    	}
    }
    
    func BenchmarkMarshalMsgActiveWorkerStat(b *testing.B) {
    	v := ActiveWorkerStat{}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgActiveWorkerStat(b *testing.B) {
    	v := ActiveWorkerStat{}
    	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 Feb 06 06:00:45 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/value.go

    	for _, x := range a {
    		x.Uses++
    	}
    }
    func (v *Value) SetArg(i int, w *Value) {
    	v.Args[i].Uses--
    	v.Args[i] = w
    	w.Uses++
    }
    func (v *Value) SetArgs1(a *Value) {
    	v.resetArgs()
    	v.AddArg(a)
    }
    func (v *Value) SetArgs2(a, b *Value) {
    	v.resetArgs()
    	v.AddArg(a)
    	v.AddArg(b)
    }
    func (v *Value) SetArgs3(a, b, c *Value) {
    	v.resetArgs()
    	v.AddArg(a)
    	v.AddArg(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

          <K, V> ReferenceEntry<K, V> newEntry(
              Segment<K, V> segment, K key, int hash, @CheckForNull ReferenceEntry<K, V> next) {
            return new StrongWriteEntry<>(key, hash, next);
          }
    
          @Override
          <K, V> ReferenceEntry<K, V> copyEntry(
              Segment<K, V> segment,
              ReferenceEntry<K, V> original,
              ReferenceEntry<K, V> newNext,
              K key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. src/internal/fuzz/mutator.go

    			}
    			max = 100
    			if v > 0 && maxValue-v < max {
    				// Don't let v exceed maxValue
    				max = maxValue - v
    			}
    			v += float64(1 + m.rand(int(max)))
    			return v
    		case 1:
    			// Subtract a random number
    			if v <= -maxValue {
    				continue
    			}
    			max = 100
    			if v < 0 && maxValue+v < max {
    				// Don't let v drop below -maxValue
    				max = maxValue + v
    			}
    			v -= float64(1 + m.rand(int(max)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritedec64.go

    	case OpCtz64:
    		return rewriteValuedec64_OpCtz64(v)
    	case OpCtz64NonZero:
    		v.Op = OpCtz64
    		return true
    	case OpEq64:
    		return rewriteValuedec64_OpEq64(v)
    	case OpInt64Hi:
    		return rewriteValuedec64_OpInt64Hi(v)
    	case OpInt64Lo:
    		return rewriteValuedec64_OpInt64Lo(v)
    	case OpLeq64:
    		return rewriteValuedec64_OpLeq64(v)
    	case OpLeq64U:
    		return rewriteValuedec64_OpLeq64U(v)
    	case OpLess64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  8. src/sync/atomic/value_test.go

    	"testing"
    )
    
    func TestValue(t *testing.T) {
    	var v Value
    	if v.Load() != nil {
    		t.Fatal("initial Value is not nil")
    	}
    	v.Store(42)
    	x := v.Load()
    	if xx, ok := x.(int); !ok || xx != 42 {
    		t.Fatalf("wrong value: got %+v, want 42", x)
    	}
    	v.Store(84)
    	x = v.Load()
    	if xx, ok := x.(int); !ok || xx != 84 {
    		t.Fatalf("wrong value: got %+v, want 84", x)
    	}
    }
    
    func TestValueLarge(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite386.go

    	case OpNeg8:
    		v.Op = Op386NEGL
    		return true
    	case OpNeq16:
    		return rewriteValue386_OpNeq16(v)
    	case OpNeq32:
    		return rewriteValue386_OpNeq32(v)
    	case OpNeq32F:
    		return rewriteValue386_OpNeq32F(v)
    	case OpNeq64F:
    		return rewriteValue386_OpNeq64F(v)
    	case OpNeq8:
    		return rewriteValue386_OpNeq8(v)
    	case OpNeqB:
    		return rewriteValue386_OpNeqB(v)
    	case OpNeqPtr:
    		return rewriteValue386_OpNeqPtr(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  10. pkg/securitycontext/accessors.go

    	if v := w.containerSC.RunAsUser(); v != nil {
    		return v
    	}
    	return w.podSC.RunAsUser()
    }
    func (w *effectiveContainerSecurityContextWrapper) SetRunAsUser(v *int64) {
    	if !reflect.DeepEqual(w.RunAsUser(), v) {
    		w.containerSC.SetRunAsUser(v)
    	}
    }
    func (w *effectiveContainerSecurityContextWrapper) RunAsGroup() *int64 {
    	if v := w.containerSC.RunAsGroup(); v != nil {
    		return v
    	}
    	return w.podSC.RunAsGroup()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 14.4K bytes
    - Viewed (0)
Back to top