Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,036 for seem (0.04 sec)

  1. guava/src/com/google/common/io/MoreFiles.java

        // exists and is a symlink to a directory... we'd like for this to succeed in that case.
        // (I'm kind of surprised that createDirectories would fail in that case; doesn't seem like
        // what you'd want to happen.)
        if (!Files.isDirectory(parent)) {
          Files.createDirectories(parent, attrs);
          if (!Files.isDirectory(parent)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject_test.go

    		}
    		want := f.Name() + ".injected"
    		if alreadyTested.Contains(want) {
    			continue
    		}
    		cases = append(cases, testCase{in: f.Name(), want: want})
    	}
    
    	// Precompute injection settings. This may seem like a premature optimization, but due to the size of
    	// YAMLs, with -race this was taking >10min in some cases to generate!
    	if util.Refresh() {
    		cleanupOldFiles(t)
    		writeInjectionSettings(t, "default", nil, "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Ordering.java

     * code verbose. Whenever following this advice, you should check whether {@code Stream} could be
     * adopted more comprehensively in your code; the end result may be quite a bit simpler.
     *
     * <h3>See also</h3>
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/OrderingExplained">{@code Ordering}</a>.
     *
     * @author Jesse Wilson
     * @author Kevin Bourrillion
     * @since 2.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Ordering.java

     * code verbose. Whenever following this advice, you should check whether {@code Stream} could be
     * adopted more comprehensively in your code; the end result may be quite a bit simpler.
     *
     * <h3>See also</h3>
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/OrderingExplained">{@code Ordering}</a>.
     *
     * @author Jesse Wilson
     * @author Kevin Bourrillion
     * @since 2.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. src/math/big/natdiv.go

    work entirely in terms of 3-by-2 division, which is much less useful on modern
    hardware than an algorithm using 2-by-1 division. The proofs are a bit too
    focused on digit counting and seem needlessly complex, especially compared to
    the ones given above.
    
    Burnikel and Ziegler's “Fast Recursive Division” introduced the key insight of
    implementing division by an n-digit divisor using recursive calls to division
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc.go

    //
    // This function exists just to make it clear that this is the maximum address
    // for the page allocator's search space. See maxOffAddr for details.
    //
    // It's a function (rather than a variable) because it needs to be
    // usable before package runtime's dynamic initialization is complete.
    // See #51913 for details.
    func maxSearchAddr() offAddr { return maxOffAddr }
    
    // Global chunk index.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		}
    	}
    	return nodeName
    }
    
    // callgrindName implements the callgrind naming compression scheme.
    // For names not previously seen returns "(N) name", where N is a
    // unique index. For names previously seen returns "(N)" where N is
    // the index returned the first time.
    func callgrindName(names map[string]int, name string) string {
    	if name == "" {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. src/runtime/arena.go

    // exception to this: if an arena allocated memory that isn't exhausted, it's placed
    // back into a pool for reuse. This means that a crash is not always guaranteed.
    //
    // While this may seem unsafe, it still prevents memory corruption, and is in fact
    // necessary in order to make new(T) a valid implementation of arenas. Such a property
    // is desirable to allow for a trivial implementation. (It also avoids complexities
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    You can even publish the platform as a Maven BOM or using Gradle's metadata format.
    See the plugin page for more information on how to do that, and in particular the section on <<java_platform_plugin#sec:java_platform_consumption,Consuming platforms>> to see how you can apply a platform to other projects in the same build.
    
    
    [[migmvn:excluding_deps]]
    === Excluding transitive dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. src/runtime/panic.go

    			throw("defer after range func returned")
    		}
    		if head.CompareAndSwap(d1.link, d1) {
    			break
    		}
    	}
    
    	// Must be last - see deferproc above.
    	return0()
    }
    
    // deferconvert converts the rangefunc defer list of d0 into an ordinary list
    // following d0.
    // See the doc comment for deferrangefunc for details.
    func deferconvert(d0 *_defer) {
    	head := d0.head
    	if raceenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top