Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 474 for convenient (0.16 sec)

  1. src/math/big/natdiv.go

    For random inputs, a fixup at this step is exceedingly rare: the 3-by-2 guess
    is not often wrong at all. But still we must do the check. Note that since the
    3-by-2 guess is off by at most 1, it can be convenient to perform the final
    u < q̂·v as part of the computation of the remainder r = u - q̂·v. If the
    subtraction underflows, decremeting q̂ and adding one v back to r is enough to
    arrive at the final q, r.
    
    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. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    description as a string. */ @Override public String toString() { return out.toString(); } } org/hamcrest/TypeSafeDiagnosingMa.java org/hamcrest/TypeSafeDiagnosingMa.java package org.hamcrest; import org.hamcrest.internal.ReflectiveTypeFinder; /** * Convenient base class for Matchers that require a non-null value of a specific type * and that will report why the received value has been rejected. * This implements the null check, checks the type and then casts. * To use, implement <pre>matchesSafely()</pre>....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.setenv("LD_BIND_NOW", "1")
    	tg.run("help")
    }
    
    // Issue 18225.
    // This is really a cmd/asm issue but this is a convenient place to test it.
    func TestConcurrentAsm(t *testing.T) {
    	skipIfGccgo(t, "gccgo does not use cmd/asm")
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	asm := `DATA ·constants<>+0x0(SB)/8,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSortedMap.java

       *         .put(3, "three")
       *         .buildOrThrow();
       * }</pre>
       *
       * <p>For <i>small</i> immutable sorted maps, the {@code ImmutableSortedMap.of()} methods are even
       * more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple maps in series. Each map is a superset of the maps created before it.
       *
       * @since 2.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    strings containing slashes. Such a pattern expands to all package
    directories found in the GOPATH trees with names matching the
    patterns.
    
    To make common patterns more convenient, there are two special cases.
    First, /... at the end of the pattern can match an empty string,
    so that net/... matches both net and packages in its subdirectories, like net/http.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

          // backedge.
          Predicate* input_data_pred;
          if (use_optimistic_mode) {
            // In the optimistic mode, we use the first-seen Merge node per
            // frame as the representative Merge node.  It is just convenient and
            // does not affect the result after pattern-matching into the
            // AndRecurrence form.
            absl::string_view frame_name = control_flow_info_[n->id()].frame_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    The verification file generated by Gradle has a strict ordering for all its content.
    It also uses the information from the existing state to limit changes to the strict minimum.
    
    This means that generation is actually a convenient tool for _updating_ a verification file:
    
    * Checksum entries generated by Gradle will have a clear `origin` that starts with "Generated by Gradle", which is a good indicator that an entry needs to be reviewed,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       *         .put(3, "three")
       *         .buildOrThrow();
       * }</pre>
       *
       * <p>For <i>small</i> immutable sorted maps, the {@code ImmutableSortedMap.of()} methods are even
       * more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple maps in series. Each map is a superset of the maps created before it.
       *
       * @since 2.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    			p.chunks[i] = nil
    			// This memory comes from sysAlloc and will always be page-aligned.
    			sysFree(unsafe.Pointer(x), unsafe.Sizeof(*p.chunks[0]), testSysStat)
    		}
    	}
    }
    
    // BaseChunkIdx is a convenient chunkIdx value which works on both
    // 64 bit and 32 bit platforms, allowing the tests to share code
    // between the two.
    //
    // This should not be higher than 0x100*pallocChunkBytes to support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    			gt.tags = append(gt.tags, "internal")
    			if buildmode == "pie" {
    				gt.tags = append(gt.tags, "internal_pie")
    			}
    		}
    		if buildmode == "static" {
    			// This isn't actually a Go buildmode, just a convenient way to tell
    			// cgoTest we want static linking.
    			gt.buildmode = ""
    			if linkmode == "external" {
    				ldflags = append(ldflags, `-extldflags "-static -pthread"`)
    			} else if linkmode == "auto" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top