Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for overlap (0.34 sec)

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

       *       RuntimeException} (though {@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
       * <p>The overall principle is to continue to treat every checked exception as a checked
       * exception, every unchecked exception as an unchecked exception, and every error as an error. In
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    	modFilePath := modFilePath(MainModules.ModRoot(mainModule))
    	if _, ok := fsys.OverlayPath(modFilePath); ok {
    		if dirty {
    			return errors.New("updates to go.mod needed, but go.mod is part of the overlay specified with -overlay")
    		}
    		return nil
    	}
    	defer func() {
    		// At this point we have determined to make the go.mod file on disk equal to new.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       * Instead, use the {@code HashSet} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * <p>Overall, this method is not very useful and will likely be deprecated in the future.
       */
      public static <E extends @Nullable Object> HashSet<E> newHashSet(Iterable<? extends E> elements) {
        return (elements instanceof Collection)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

       * Instead, use the {@code HashSet} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * <p>Overall, this method is not very useful and will likely be deprecated in the future.
       */
      public static <E extends @Nullable Object> HashSet<E> newHashSet(Iterable<? extends E> elements) {
        return (elements instanceof Collection)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	if physHugePageSize > pageSize && physHugePageSize > physPageSize {
    		// We have huge pages, so let's ensure we don't break one by scavenging
    		// over a huge page boundary. If the range [start, start+size) overlaps with
    		// a free-and-unscavenged huge page, we want to grow the region we scavenge
    		// to include that huge page.
    
    		// Compute the huge page boundary above our candidate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/html/template/exec_test.go

    	const (
    		input   = `a({{block "inner" .}}bar({{.}})baz{{end}})b`
    		want    = `a(bar(hello)baz)b`
    		overlay = `{{define "inner"}}foo({{.}})bar{{end}}`
    		want2   = `a(foo(goodbye)bar)b`
    	)
    	tmpl, err := New("outer").Parse(input)
    	if err != nil {
    		t.Fatal(err)
    	}
    	tmpl2, err := Must(tmpl.Clone()).Parse(overlay)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var buf strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    	// by either an L-type or S-type index, then half the substrings will
    	// be of the form SLS, but the other half will be longer. Of that half,
    	// half (a quarter overall) will be SLLS; an eighth will be SLLLS, and so on.
    	// Not counting the final S in each (which overlaps the first S in the next),
    	// This works out to an average length 2×½ + 3×¼ + 4×⅛ + ... = 3.
    	// The space we need is further reduced by the fact that many of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    		} else {
    			info, err = d.Info()
    		}
    		if err != nil {
    			return err
    		}
    		perm := info.Mode() & os.ModePerm
    
    		// Always copy directories (don't symlink them).
    		// If we add a file in the overlay, we don't want to add it in the original.
    		if info.IsDir() {
    			return os.MkdirAll(dstPath, perm|0200)
    		}
    
    		// If the OS supports symlinks, use them instead of copying bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	const (
    		input   = `a({{block "inner" .}}bar({{.}})baz{{end}})b`
    		want    = `a(bar(hello)baz)b`
    		overlay = `{{define "inner"}}foo({{.}})bar{{end}}`
    		want2   = `a(foo(goodbye)bar)b`
    	)
    	tmpl, err := New("outer").Parse(input)
    	if err != nil {
    		t.Fatal(err)
    	}
    	tmpl2, err := Must(tmpl.Clone()).Parse(overlay)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var buf strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

          const T1& expected,
          const T2& actual,
          // The following line prevents this overload from being considered if T2
          // is not a pointer type.  We need this because ASSERT_EQ(NULL, my_ptr)
          // expands to Compare("", "", NULL, my_ptr), which requires a conversion
          // to match the Secret* in the other overload, which would otherwise make
          // this template match better.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top