Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 761 for course (0.32 sec)

  1. logo/usage_guidelines.md

    >communicate compatibility or interoperability of software or products. In
    >addition to the requirement that any use of a mark to make an assertion of
    >compatibility must, of course, be accurate, the use of these marks must
    >avoid confusion regarding The Linux Foundation’s association with the
    >product. The use of the mark cannot imply that The Linux Foundation or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    `webAppDirName` — `String`::
    _Default value_: `src/main/webapp`
    +
    The name of the web application source directory, relative to the project directory.
    
    `webAppDir` — (read-only) `File`::
    _Default value_: `$webAppDirName`, e.g. _src/main/webapp_
    +
    The path to the web application source directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/WithEstimatedSize.java

         * so killing all possible optimizations. Instead, it should return the size of the collection it wraps,
         * so that we have an estimate of the number of elements it may contain. The closer to reality is the better,
         * of course.
         *
         * @return the estimate size of the object
         */
        int estimatedSize();
    
        class Estimates {
            public static <T> int estimateSizeOf(Collection<T> collection) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 18 08:11:23 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  4. test/fixedbugs/bug120.go

    	// If "1e23+8388608" is implemented as "1e23" + "8388608",
    	// that ends up computing 1e23-8388608 + 8388608 = 1e23,
    	// which rounds back to 1e23-8388608.
    	// The correct answer, of course, would be "1e23+8388608" = 1e23+8388608.
    	// This is not going to be correct until 6g has multiprecision floating point.
    	// A simpler case is "1e23+1", which should also round to 1e23+8388608.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 1.8K bytes
    - Viewed (0)
  5. src/syscall/rlimit.go

    // best approach was for Go to raise the limit unconditionally for itself,
    // and then leave old software to set the limit back as needed.
    // Code that really wants Go to leave the limit alone can set the hard limit,
    // which Go of course has no choice but to respect.
    func init() {
    	var lim Rlimit
    	if err := Getrlimit(RLIMIT_NOFILE, &lim); err == nil && lim.Cur != lim.Max {
    		origRlimitNofile.Store(&lim)
    		nlim := lim
    		nlim.Cur = nlim.Max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/SortedLists.java

              @ParametricNullness E key,
              List<? extends E> list,
              int foundIndex) {
            // Of course, we have to use binary search to find the precise
            // breakpoint...
            int lower = 0;
            int upper = foundIndex;
            // Of course, we have to use binary search to find the precise breakpoint...
            // Everything between lower and upper inclusive compares at <= 0.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/visit.go

    //		do = func(x ir.Node) bool {
    //			return cond(x) || ir.DoChildren(x, do)
    //		}
    //		return do(n)
    //	}
    //
    // Visit and Any are presented above as examples of how to use
    // DoChildren effectively, but of course, usage that fits within the
    // simplifications captured by Visit or Any will be best served
    // by directly calling the ones provided by this package.
    func DoChildren(n Node, do func(Node) bool) bool {
    	if n == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

     */
    class MultiReleaseClasspathElementTransformForLegacy extends BaseClasspathElementTransform {
        MultiReleaseClasspathElementTransformForLegacy(File source, ClasspathBuilder classpathBuilder, ClasspathWalker classpathWalker, InstrumentationTypeRegistry typeRegistry, ClassTransform transform) {
            super(source, classpathBuilder, classpathWalker, typeRegistry, transform);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/SortedLists.java

              @ParametricNullness E key,
              List<? extends E> list,
              int foundIndex) {
            // Of course, we have to use binary search to find the precise
            // breakpoint...
            int lower = 0;
            int upper = foundIndex;
            // Of course, we have to use binary search to find the precise breakpoint...
            // Everything between lower and upper inclusive compares at <= 0.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/runtime/sys_openbsd.go

    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(pthread_create_trampoline)), unsafe.Pointer(&attr))
    	KeepAlive(attr)
    	KeepAlive(arg) // Just for consistency. Arg of course needs to be kept alive for the start function.
    	return ret
    }
    func pthread_create_trampoline()
    
    // Tell the linker that the libc_* functions are to be found
    // in a system library, with the libc_ prefix missing.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top