Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for vminus1 (0.1 sec)

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

       *
       * @param anElement one of the elements the set should contain
       * @param otherElements the rest of the elements the set should contain
       * @return an immutable set containing those elements, minus duplicates
       */
      // http://code.google.com/p/google-web-toolkit/issues/detail?id=3028
      @GwtCompatible(serializable = true)
      public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        /**
         * List the contents of this SMB resource. The list returned will be
         * identical to the list returned by the parameterless <code>list()</code>
         * method minus filenames filtered by the specified filter.
         *
         * @param filter
         *            a filename filter to exclude filenames from the results
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            arrayAccessExpression: KtArrayAccessExpression,
        ): CompoundArrayAccessPartiallyAppliedSymbols? {
            // The last argument of `set` is the new value to be set. This value should be a call to the respective `plus`, `minus`,
            // `times`, `div`, or `rem` function.
            val operationCall = fir.arguments.lastOrNull() as? FirFunctionCall ?: return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            // another case we want to check here is if we are in a
            // nested class A$B$C and want to access B without
            // qualifying it by A.B. A alone will work, since that
            // is the qualified (minus package) name of that class
            // anyway.
    
            // That means if the current class is not an InnerClassNode
            // there is nothing to be done.
            if (!(currentClass instanceof InnerClassNode)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    	// size (MSS). A constant is used, rather than querying the kernel for
    	// the actual MSS, to avoid complexity. The value here is the IPv6
    	// minimum MTU (1280 bytes) minus the overhead of an IPv6 header (40
    	// bytes) and a TCP header with timestamps (32 bytes).
    	tcpMSSEstimate = 1208
    
    	// recordSizeBoostThreshold is the number of bytes of application data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	pcbuf := makeProfStack() // see saveg() for explanation
    	stw := stopTheWorld(stwGoroutineProfile)
    	// Using gcount while the world is stopped should give us a consistent view
    	// of the number of live goroutines, minus the number of goroutines that are
    	// alive and permanently marked as "system". But to make this count agree
    	// with what we'd get from isSystemGoroutine, we need special handling for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/time/time_test.go

    	// Year one tests (non-leap)
    	{1, 1, 1, 1},
    	{1, 1, 15, 15},
    	{1, 2, 1, 32},
    	{1, 2, 15, 46},
    	{1, 3, 1, 60},
    	{1, 3, 15, 74},
    	{1, 4, 1, 91},
    	{1, 12, 31, 365},
    
    	// Year minus one tests (non-leap)
    	{-1, 1, 1, 1},
    	{-1, 1, 15, 15},
    	{-1, 2, 1, 32},
    	{-1, 2, 15, 46},
    	{-1, 3, 1, 60},
    	{-1, 3, 15, 74},
    	{-1, 4, 1, 91},
    	{-1, 12, 31, 365},
    
    	// 400 BC tests (leap-year)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    	}
    
    	// One predecessor
    	l0 := blockLocs[preds[0].ID]
    	p0 := l0.endState
    	if len(preds) == 1 {
    		if previousBlock != nil && preds[0].ID != previousBlock.ID {
    			// Change from previous block is its endState minus the predecessor's endState
    			markChangedVars(blockLocs[previousBlock.ID].endState, p0)
    		}
    		locs.startState = p0
    		blockChanged = blockChanged || l0.lastChangedTime > locs.lastCheckedTime
    		reset(p0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// from the live heap to the heap goal. This ensures we always have *some*
    	// headroom when the GC actually starts. For larger heaps, set the max trigger
    	// point at the goal, minus the minimum heap size.
    	//
    	// This choice follows from the fact that the minimum heap size is chosen
    	// to reflect the costs of a GC with no work to do. With a large heap but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    }
    
    func (r *Resource) GoString() string {
    	return "dnsmessage.Resource{" +
    		"Header: " + r.Header.GoString() +
    		", Body: &" + r.Body.GoString() +
    		"}"
    }
    
    // A ResourceBody is a DNS resource record minus the header.
    type ResourceBody interface {
    	// pack packs a Resource except for its header.
    	pack(msg []byte, compression map[string]uint16, compressionOff int) ([]byte, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top