Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,194 for loser (0.06 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * <pre>{@code
     * FluentFuture<UserName> userName =
     *     ClosingFuture.submit(
     *             closer -> closer.eventuallyClose(database.newTransaction(), closingExecutor),
     *             executor)
     *         .transformAsync((closer, transaction) -> transaction.queryClosingFuture("..."), executor)
     *         .transform((closer, result) -> result.get("userName"), directExecutor())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Range.java

       * than {@code upper}.
       *
       * @throws IllegalArgumentException if {@code lower} is greater than <i>or equal to</i> {@code
       *     upper}
       * @throws ClassCastException if {@code lower} and {@code upper} are not mutually comparable
       * @since 14.0
       */
      public static <C extends Comparable<?>> Range<C> open(C lower, C upper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            when:
            succeeds("compileJava")
    
            then:
            bytecodeVersion() == TestJavaClassUtil.getClassVersion(lower.javaVersion)
        }
    
        def 'honors task level compatibility when using toolchain'() {
            given:
            def lower = getLowerJvm()
            def lowerVersion = lower.javaVersion.getMajorVersion()
    
            and:
            goodCode()
            buildFile << """
                java.toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

      let summary = "Lower tf.ReadVariable and tf.AssignVariable";
    
      let description = [{
        This pass will lower AssignVariableOp and ReadVariableOp to their ml_program
        equivalents, for those resources which come from a VarHandle op, but also
        for those which come from a "bound input" parameter. For the latter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //
    //	byte 1:
    //	  7..6  unused
    //	  5..3  length of 1st mapping of case type
    //	  2..0  length of 2nd mapping of case type
    //
    //	  case     1st    2nd
    //	  lower -> upper, title
    //	  upper -> lower, title
    //	  title -> lower, upper
    //
    // Lengths with the value 0x7 indicate no value and implies no change.
    // A length of 0 indicates a mapping to zero-length string.
    //
    // Body bytes:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/ClosingFutureFinishToFutureTest.java

        ClosingFuture<Closeable> closingFuture =
            ClosingFuture.submit(
                new ClosingCallable<Closeable>() {
                  @Override
                  public Closeable call(DeferredCloser closer) throws Exception {
                    return closer.eventuallyClose(mockCloseable, executor);
                  }
                },
                executor);
        FluentFuture<Closeable> unused = closingFuture.finishToFuture();
        assertThrows(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/strconv/ftoa.go

    	// Either way, call it mantlo << explo-mantbits.
    	// Our lower bound is halfway between, mantlo*2+1 << explo-mantbits-1.
    	var mantlo uint64
    	var explo int
    	if mant > 1<<flt.mantbits || exp == minexp {
    		mantlo = mant - 1
    		explo = exp
    	} else {
    		mantlo = mant*2 - 1
    		explo = exp - 1
    	}
    	lower := new(decimal)
    	lower.Assign(mantlo*2 + 1)
    	lower.Shift(explo - int(flt.mantbits) - 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_client.go

    	nodeClient csipbv1.NodeClient,
    	closer io.Closer,
    	err error,
    )
    
    type nodeV1AccessModeMapper func(am api.PersistentVolumeAccessMode) csipbv1.VolumeCapability_AccessMode_Mode
    
    // newV1NodeClient creates a new NodeClient with the internally used gRPC
    // connection set up. It also returns a closer which must be called to close
    // the gRPC connection when the NodeClient is not used anymore.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  9. src/unicode/letter.go

    			if delta > MaxRune {
    				// In an Upper-Lower sequence, which always starts with
    				// an UpperCase letter, the real deltas always look like:
    				//	{0, 1, 0}    UpperCase (Lower is next)
    				//	{-1, 0, -1}  LowerCase (Upper, Title are previous)
    				// The characters at even offsets from the beginning of the
    				// sequence are upper case; the ones at odd offsets are lower.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

            String lower = permission.toLowerCase(Locale.ROOT);
            final String aclPrefix;
            if (lower.startsWith(allowPrefix)) {
                lower = lower.substring(allowPrefix.length());
                permission = permission.substring(allowPrefix.length());
                aclPrefix = StringUtil.EMPTY;
            } else if (lower.startsWith(denyPrefix)) {
                lower = lower.substring(denyPrefix.length());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top