Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for i$ (0.04 sec)

  1. android/guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

      }
    
      /**
       * Gets the current value at position {@code i}.
       *
       * @param i the index
       * @return the current value
       */
      public final double get(int i) {
        return longBitsToDouble(longs.get(i));
      }
    
      /**
       * Atomically sets the element at position {@code i} to the given value.
       *
       * @param i the index
       * @param newValue the new value
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/sort/search.go

    		// i ≤ h < j
    		if !f(h) {
    			i = h + 1 // preserves f(i-1) == false
    		} else {
    			j = h // preserves f(j) == true
    		}
    	}
    	// i == j, f(i-1) == false, and f(j) (= f(i)) == true  =>  answer is i.
    	return i
    }
    
    // Find uses binary search to find and return the smallest index i in [0, n)
    // at which cmp(i) <= 0. If there is no such index i, Find returns i = n.
    // The found result is true if i < n and cmp(i) == 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/html.go

    }
    
    func hasEndPre(s string) bool {
    	for i := 0; i < len(s); i++ {
    		if s[i] == '<' && i+1 < len(s) && s[i+1] == '/' {
    			buf := make([]byte, 0, 8)
    			for i += 2; i < len(s) && len(buf) < 8; i++ {
    				c := s[i]
    				if 'A' <= c && c <= 'Z' {
    					c += 'a' - 'A'
    				}
    				if c < 'a' || 'z' < c {
    					break
    				}
    				buf = append(buf, c)
    			}
    			if i < len(s) && s[i] == '>' {
    				switch string(buf) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/container/heap/heap.go

    // but less expensive than, calling [Remove](h, i) followed by a Push of the new value.
    // The complexity is O(log n) where n = h.Len().
    func Fix(h Interface, i int) {
    	if !down(h, i, h.Len()) {
    		up(h, i)
    	}
    }
    
    func up(h Interface, j int) {
    	for {
    		i := (j - 1) / 2 // parent
    		if i == j || !h.Less(j, i) {
    			break
    		}
    		h.Swap(i, j)
    		j = i
    	}
    }
    
    func down(h Interface, i0, n int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/RC4.java

    public class RC4
    {
    
        byte[] s;
        int i, j;
    
        public RC4()
        {
        }
        public RC4(byte[] key)
        {
            init(key, 0, key.length);
        }
    
        public void init(byte[] key, int ki, int klen)
        {
            s = new byte[256];
    
            for (i = 0; i < 256; i++)
                s[i] = (byte)i;
    
            for (i = j = 0; i < 256; i++) {
                j = (j + key[ki + i % klen] + s[i]) & 0xff;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. src/runtime/map_test.go

    		k[i] = strconv.Itoa(i)
    	}
    	b.ResetTimer()
    	a := make(map[string]int)
    	for i := 0; i < b.N; i++ {
    		a[k[i&(n-1)]] = i
    	}
    }
    
    func benchmarkMapOperatorAssignStr(b *testing.B, n int) {
    	k := make([]string, n)
    	for i := 0; i < len(k); i++ {
    		k[i] = strconv.Itoa(i)
    	}
    	b.ResetTimer()
    	a := make(map[string]string)
    	for i := 0; i < b.N; i++ {
    		key := k[i&(n-1)]
    		a[key] += key
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/js/popper-1.12.9.min.js

    le.COUNTERCLOCKWISE:p=q(i,!0);break;default:p=t.behavior;}return p.forEach(function(s,d){if(i!==s||p.length===d+1)return e;i=e.placement.split('-')[0],n=x(i);var a=e.offsets.popper,l=e.offsets.reference,f=X,m='left'===i&&f(a.right)>f(l.left)||'right'===i&&f(a.left)<f(l.right)||'top'===i&&f(a.bottom)>f(l.top)||'bottom'===i&&f(a.top)<f(l.bottom),h=f(a.left)<f(o.left),c=f(a.right)>f(o.right),g=f(a.top)<f(o.top),u=f(a.bottom)>f(o.bottom),b='left'===i&&h||'right'===i&&c||'top'===i&&g||'bottom'===i&&u,w=-1!==['t...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. cmd/dynamic-timeouts_test.go

    	// Race test.
    	timeout := newDynamicTimeout(time.Second, time.Millisecond)
    	var wg sync.WaitGroup
    	for i := 0; i < runtime.GOMAXPROCS(0); i++ {
    		wg.Add(1)
    		rng := rand.New(rand.NewSource(int64(i)))
    		go func() {
    			defer wg.Done()
    			for i := 0; i < 100; i++ {
    				for j := 0; j < 100; j++ {
    					timeout.LogSuccess(time.Duration(float64(time.Second) * rng.Float64()))
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Oct 14 10:08:40 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/distpack/archive.go

    	f *File
    }
    
    func (i fileInfo) Name() string       { return path.Base(i.f.Name) }
    func (i fileInfo) ModTime() time.Time { return i.f.Time }
    func (i fileInfo) Mode() fs.FileMode  { return i.f.Mode }
    func (i fileInfo) IsDir() bool        { return i.f.Mode&fs.ModeDir != 0 }
    func (i fileInfo) Size() int64        { return i.f.Size }
    func (i fileInfo) Sys() any           { return nil }
    
    func (i fileInfo) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/internal/stringslite/strings.go

    			return i
    		}
    		i++
    		fails++
    		if fails >= 4+i>>4 && i < t {
    			// See comment in ../bytes/bytes.go.
    			j := bytealg.IndexRabinKarp(s[i:], substr)
    			if j < 0 {
    				return -1
    			}
    			return i + j
    		}
    	}
    	return -1
    }
    
    func Cut(s, sep string) (before, after string, found bool) {
    	if i := Index(s, sep); i >= 0 {
    		return s[:i], s[i+len(sep):], true
    	}
    	return s, "", false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top