Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 7,992 for notC (0.18 sec)

  1. android/guava/src/com/google/common/collect/Ordering.java

       * but not the other, the shorter iterable is considered to be less than the longer one. For
       * example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1, 1] <
       * [1, 2] < [2]}.
       *
       * <p>Note that {@code ordering.lexicographical().reverse()} is not equivalent to {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveMetadata.java

     *
     * <p>Implementations must be immutable, thread safe, "fast" (ie should not run user code, or touch the file system or network etc) and "reliable" (ie should not fail)
     * Expensive operations should live on {@link ComponentGraphResolveState} instead. Note that as a transition step, not all implementations currently honor this contract.</p>
     */
    public interface ComponentGraphResolveMetadata {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

         *         true -> {}
         *         else -> {}
         *     }
         * }
         *
         * Note that this function returns the same missing cases regardless of the existence of the else branch.
         * If you have to assume that it does not have the missing cases when it has an else branch,
         * you need a separate check whether it has an else branch or not.
         */
        public fun KtWhenExpression.getMissingCases(): List<WhenMissingCase> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         * Registers a handler for when this connection is disconnected unexpectedly.. The handler is notified at most once.
         *
         * The handler is not notified after any of the following occurs:
         * <ul>
         * <li>When the connection is closed using {@link #stop()}.</li>
         * </ul>
         *
         * Note: the handler may be run from another thread before this method returns.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/runtime/os_plan9.go

    		i := indexNoFloat(note, "addr=")
    		if i >= 0 {
    			i += 5
    		} else if i = indexNoFloat(note, "va="); i >= 0 {
    			i += 3
    		} else {
    			panicmem()
    		}
    		addr := note[i:]
    		gp.sigcode1 = uintptr(atolwhex(addr))
    		if gp.sigcode1 < 0x1000 {
    			panicmem()
    		}
    		if gp.paniconfault {
    			panicmemAddr(gp.sigcode1)
    		}
    		if inUserArenaChunk(gp.sigcode1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

       * natural ordering.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableSortedSet#copyOf(Iterable)}
       * instead.
       *
       * <p><b>Note:</b> If {@code elements} is a {@code SortedSet} with an explicit comparator, this
       * method has different behavior than {@link TreeSet#TreeSet(SortedSet)}, which returns a {@code
       * TreeSet} with that comparator.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. src/go/doc/reader.go

    			r.notes[marker] = append(r.notes[marker], &Note{
    				Pos:  list[0].Pos(),
    				End:  list[len(list)-1].End(),
    				UID:  text[m[4]:m[5]],
    				Body: body,
    			})
    		}
    	}
    }
    
    // readNotes extracts notes from comments.
    // A note must start at the beginning of a comment with "MARKER(uid):"
    // and is followed by the note body (e.g., "// BUG(gri): fix this").
    // The note ends at the end of the comment group or at the start of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. src/runtime/metrics/doc.go

    		Bucket counts increase monotonically. Note that this does not
    		include tiny objects as defined by /gc/heap/tiny/allocs:objects,
    		only tiny blocks.
    
    	/gc/heap/allocs:bytes
    		Cumulative sum of memory allocated to the heap by the
    		application.
    
    	/gc/heap/allocs:objects
    		Cumulative count of heap allocations triggered by the
    		application. Note that this does not include tiny objects as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. src/runtime/rand.go

    // This is a fallback for when readRandom does not read
    // the full requested amount.
    // Whatever entropy r already contained is preserved.
    func readTimeRandom(r []byte) {
    	// Inspired by wyrand.
    	// An earlier version of this code used getg().m.procid as well,
    	// but note that this is called so early in startup that procid
    	// is not initialized yet.
    	v := uint64(nanotime())
    	for len(r) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/ResolvedComponentResultInternal.java

         * may not include all the variants returned by {@link #getVariants()}.
         *
         * <p>
         * Note: for performance reasons,
         * {@link org.gradle.api.internal.artifacts.configurations.ResolutionStrategyInternal#setIncludeAllSelectableVariantResults(boolean)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top