Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 160 for Clip (0.05 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"StartRegion", Func, 11},
    		{"Stop", Func, 5},
    		{"Task", Type, 11},
    		{"WithRegion", Func, 11},
    	},
    	"slices": {
    		{"BinarySearch", Func, 21},
    		{"BinarySearchFunc", Func, 21},
    		{"Clip", Func, 21},
    		{"Clone", Func, 21},
    		{"Compact", Func, 21},
    		{"CompactFunc", Func, 21},
    		{"Compare", Func, 21},
    		{"CompareFunc", Func, 21},
    		{"Concat", Func, 22},
    		{"Contains", Func, 21},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    	// one preceded by an index of type S, at which point it must stop.
    	//
    	// As we scan through the array, we clear the worked entries (sa[i] > 0) to zero,
    	// and we flip sa[i] < 0 to -sa[i], so that the loop finishes with sa containing
    	// only the indexes of the leftmost L-type indexes for each LMS-substring.
    	//
    	// The suffix array sa therefore serves simultaneously as input, output,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

          return precomputedPositive(totalCharacters, table, toString());
        } else {
          // TODO(lowasser): is it worth it to worry about the last character of large matchers?
          table.flip(Character.MIN_VALUE, Character.MAX_VALUE + 1);
          int negatedCharacters = DISTINCT_CHARS - totalCharacters;
          String suffix = ".negate()";
          final String description = toString();
          String negatedDescription =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge_test.go

    				// random test. Generate a bitmap which is either 0 or
    				// randomly set bits for each m-aligned group of m bits.
    				val := uint64(0)
    				for n := uint(0); n < 64; n += m {
    					// For each group of m bits, flip a coin:
    					// * Leave them as zero.
    					// * Set them randomly.
    					if rand.Uint64()%2 == 0 {
    						val |= (rand.Uint64() & ((1 << m) - 1)) << n
    					}
    				}
    				check(val, m)
    			}
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

          return precomputedPositive(totalCharacters, table, toString());
        } else {
          // TODO(lowasser): is it worth it to worry about the last character of large matchers?
          table.flip(Character.MIN_VALUE, Character.MAX_VALUE + 1);
          int negatedCharacters = DISTINCT_CHARS - totalCharacters;
          String suffix = ".negate()";
          final String description = toString();
          String negatedDescription =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/bootstrap.min.js.map

    'bottom-end',\n  RIGHT     : 'right-start',\n  RIGHTEND  : 'right-end',\n  LEFT      : 'left-start',\n  LEFTEND   : 'left-end'\n}\n\nconst Default = {\n  offset    : 0,\n  flip      : true,\n  boundary  : 'scrollParent',\n  reference : 'toggle',\n  display   : 'dynamic'\n}\n\nconst DefaultType = {\n  offset    : '(number|string|function)',\n  flip      : 'boolean',\n  boundary  : '(string|element)',\n  reference : '(string|element)',\n  display   : 'string'\n}\n\n/**\n * -----------------------------------...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  7. src/main/webapp/js/bootstrap.min.js.map

    'right-start',\n  RIGHTEND  : 'right-end',\n  LEFT      : 'left-start',\n  LEFTEND   : 'left-end'\n}\n\nconst Default = {\n  offset       : 0,\n  flip         : true,\n  boundary     : 'scrollParent',\n  reference    : 'toggle',\n  display      : 'dynamic',\n  popperConfig : null\n}\n\nconst DefaultType = {\n  offset       : '(number|string|function)',\n  flip         : 'boolean',\n  boundary     : '(string|element)',\n  reference    : '(string|element)',\n  display      : 'string',\n  popperConfig :...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/ByteStreams.java

          return position - oldPosition;
        }
    
        ByteBuffer buf = ByteBuffer.wrap(createBuffer());
        long total = 0;
        while (from.read(buf) != -1) {
          Java8Compatibility.flip(buf);
          while (buf.hasRemaining()) {
            total += to.write(buf);
          }
          Java8Compatibility.clear(buf);
        }
        return total;
      }
    
      /** Max array length on JVM. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. src/net/http/transfer.go

    		return errTrailerEOF
    	}
    	if err != nil {
    		return err
    	}
    
    	// Make sure there's a header terminator coming up, to prevent
    	// a DoS with an unbounded size Trailer. It's not easy to
    	// slip in a LimitReader here, as textproto.NewReader requires
    	// a concrete *bufio.Reader. Also, we can't get all the way
    	// back up to our conn's LimitedReader that *might* be backing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/ByteStreams.java

          return position - oldPosition;
        }
    
        ByteBuffer buf = ByteBuffer.wrap(createBuffer());
        long total = 0;
        while (from.read(buf) != -1) {
          Java8Compatibility.flip(buf);
          while (buf.hasRemaining()) {
            total += to.write(buf);
          }
          Java8Compatibility.clear(buf);
        }
        return total;
      }
    
      /** Max array length on JVM. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top