Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for Guess (0.04 sec)

  1. src/math/big/natdiv.go

    Refining Guesses
    
    Before we check whether u < q̂·v, we can adjust our guess to change it from
    q̂ = ⌊uₙuₙ₋₁ / vₙ₋₁⌋ into the refined guess ⌊uₙuₙ₋₁uₙ₋₂ / vₙ₋₁vₙ₋₂⌋.
    Although not mentioned above, the Good Guess Guarantee also promises that this
    3-by-2-digit division guess is more precise and at most one away from the real
    answer q. The improvement from the 2-by-1 to the 3-by-2 guess can also be done
    without n-digit math.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Address.java

         */
        InetAddress toInetAddress () throws UnknownHostException;
    
    
        /**
         * Guess called name to try for session establishment. These
         * methods are used by the smb package.
         * 
         * @return guessed name
         */
        String firstCalledName ();
    
    
        /**
         * Guess next called name to try for session establishment. These
         * methods are used by the smb package.
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 03 13:22:30 UTC 2018
    - 2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/BigIntegerMath.java

         * guess with an application of Newton's method, which sets guess := (guess + (x / guess)) / 2.
         * This iteration has the following two properties:
         *
         * a) every iteration (except potentially the first) has guess >= floor(sqrt(x)). This is
         * because guess' is the arithmetic mean of guess and x / guess, sqrt(x) is the geometric mean,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    stderr '^bad114[/\\]bad114.go:15:2: duplicate method .?Y.?( .*)?$'
    
    
    # With a vendor/modules.txt lacking language versions, the world is topsy-turvy,
    # because we have to guess a uniform version for everything.
    #
    # We always guess Go 1.16, because that was the last version for which
    # 'go mod vendor' failed to record dependency versions, and it has most of
    # the language features added since modules were introduced in Go 1.11.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_main_twice.txt

    -- multimain_test.go --
    package multimain_test
    
    import "testing"
    
    func TestMain(m *testing.M) {
    	// Some users run m.Run multiple times, changing
    	// some kind of global state between runs.
    	// This used to work so I guess now it has to keep working.
    	// See golang.org/issue/23129.
    	m.Run()
    	m.Run()
    }
    
    func Test(t *testing.T) {
    	t.Log("notwithstanding")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 511 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/BigIntegerMath.java

         * guess with an application of Newton's method, which sets guess := (guess + (x / guess)) / 2.
         * This iteration has the following two properties:
         *
         * a) every iteration (except potentially the first) has guess >= floor(sqrt(x)). This is
         * because guess' is the arithmetic mean of guess and x / guess, sqrt(x) is the geometric mean,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go

    	// Final argument is (basep *uintptr) and the syscall doesn't take nil.
    	// 64 bits should be enough. (32 bits isn't even on 386). Since the
    	// actual system call is getdirentries64, 64 is a good guess.
    	// TODO(rsc): Can we use a single global basep for all calls?
    	var base = (*uintptr)(unsafe.Pointer(new(uint64)))
    	return Getdirentries(fd, buf, base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 705 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/build.gradle.kts

    // tag::archive-trees[]
    // Create a ZIP file tree using path
    val zip: FileTree = zipTree("someFile.zip")
    
    // Create a TAR file tree using path
    val tar: FileTree = tarTree("someFile.tar")
    
    // tar tree attempts to guess the compression based on the file extension
    // however if you must specify the compression explicitly you can:
    val someTar: FileTree = tarTree(resources.gzip("someTar.ext"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/io/ByteSourceAsCharSourceReadBenchmark.java

              CharStreams.copy(reader, sb);
            }
            return sb.toString();
          }
        },
        // It really seems like this should be faster than TO_BYTE_ARRAY_NEW_STRING.  But it just isn't
        // my best guess is that the jdk authors have spent more time optimizing that callpath than this
        // one. (StringCoding$StringDecoder vs. StreamDecoder).  StringCoding has a ton of special cases
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprogcgo/stackswitch.c

    	// bounds. needm should refresh the stack bounds anyway since this is a
    	// new thread.
    
    	// N.B. since we used a custom stack with makecontext,
    	// callbackUpdateSystemStack had to guess the bounds. Its guess assumes
    	// a 32KiB stack.
    	char *prev_stack_lo = stack2 + STACK_SIZE - (32*1024);
    
    	// New SP is just barely in bounds, but if we don't update the bounds
    	// we'll almost certainly overflow. The SP that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top