Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,009 for difference (0.2 sec)

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

         * Another way to express this signature would be to bound <V> by @NonNull and accept
         * LF<? extends @Nullable V>. That might be better: There's currently no difference between the
         * outputs users get when calling this with <Foo> and calling it with <@Nullable Foo>. The only
         * difference is that calling it with <Foo> won't work when an input Future has a @Nullable
         * type. So why even make that error possible by giving callers the choice?
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug_test.go

    // For example:
    //
    //	if len(os.Args) > 1 { //gdb-dbg=(hist/A,cannedInput/A) //dlv-dbg=(hist/A,cannedInput/A)
    //
    // TODO: not implemented for Delve yet, but this is the plan
    //
    // After a compiler change that causes a difference in the debug behavior, check
    // to see if it is sensible or not, and if it is, update the reference files with
    // go test debug_test.go -args -u
    // (for Delve)
    // go test debug_test.go -args -u -d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    		if sect.Name == ".text" {
    			nsections++
    		} else {
    			break
    		}
    	}
    	t.Grow(3 * nsections * int64(ctxt.Arch.PtrSize))
    
    	off := int64(0)
    	n := 0
    
    	// The vaddr for each text section is the difference between the section's
    	// Vaddr and the Vaddr for the first text section as determined at compile
    	// time.
    
    	// The symbol for the first text section is named runtime.text as before.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Range.java

         * mix of "less than" and "greater than"). We've also switched to "strictly less than" rather
         * than "less than or equal to" because of *handwave* the difference between "endpoints of
         * inclusive ranges" and "Cuts."
         */
        if (lowerBound.compareTo(otherRange.upperBound) < 0
            && otherRange.lowerBound.compareTo(upperBound) < 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/match.go

    		// There is usually very little comprehension between different scripts.
    		// In a few cases there may still be Low comprehension. This possibility
    		// is pre-computed and stored in have.altScript.
    		if Low < m.conf || have.altScript != maxScript {
    			return
    		}
    		c = Low
    	} else if have.maxRegion != maxRegion {
    		if High < c {
    			// There is usually a small difference between languages across regions.
    			c = High
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Range.java

         * mix of "less than" and "greater than"). We've also switched to "strictly less than" rather
         * than "less than or equal to" because of *handwave* the difference between "endpoints of
         * inclusive ranges" and "Cuts."
         */
        if (lowerBound.compareTo(otherRange.upperBound) < 0
            && otherRange.lowerBound.compareTo(upperBound) < 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. LICENSE

    that program using a modified version of the Library.
    
      The precise terms and conditions for copying, distribution and
    modification follow.  Pay close attention to the difference between a
    "work based on the library" and a "work that uses the library".  The
    former contains code derived from the library, whereas the latter must
    be combined with the library in order to run.
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/x86/ssa.go

    	// Avoid partial register write
    	if !t.IsFloat() {
    		switch t.Size() {
    		case 1:
    			return x86.AMOVBLZX
    		case 2:
    			return x86.AMOVWLZX
    		}
    	}
    	// Otherwise, there's no difference between load and store opcodes.
    	return storeByType(t)
    }
    
    // storeByType returns the store instruction of the given type.
    func storeByType(t *types.Type) obj.As {
    	width := t.Size()
    	if t.IsFloat() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/fetch.go

    	if zipExists {
    		return hashZip(mod, zipfile, ziphashfile)
    	}
    
    	// From here to the os.Rename call below is functionally almost equivalent to
    	// renameio.WriteToFile, with one key difference: we want to validate the
    	// contents of the file (by hashing it) before we commit it. Because the file
    	// is zip-compressed, we need an actual file — or at least an io.ReaderAt — to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * If no DACL is present, null is returned. If the DACL is empty, an array with 0 elements is returned.
     * <p>
     * Note that this is different from calling <tt>getSecurity</tt> on a
     * share. There are actually two different ACLs for shares - the ACL on
     * the share and the ACL on the folder being shared.
     * Go to <i>Computer Management</i>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top