Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for loser (0.1 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/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: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		for _, mf := range mfs {
    			if err := enc.Encode(mf); err != nil {
    				// client may disconnect for any reasons
    				// we do not have to log this.
    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    }
    
    func metricsBucketHandler() http.Handler {
    	return metricsHTTPHandler(bucketCollector, "handler.MetricsBucket")
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    fall against one another from equal heights. If the Pendulums be of Lead or soft Clay, they will lose all or almost all their Motions: If of elastick Bodies they will lose all but what they recover from their Elasticity. If it be said, that they can lose no Motion but what they communicate to other Bodies, the consequence is, that _in vacuo_ they can lose no Motion, but when they meet they must go on and penetrate one another's Dimensions. If three equal round Vessels be filled, the one with Water,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/reflect/value.go

    //
    // Deprecated: The memory representation of interface values is not
    // compatible with InterfaceData.
    func (v Value) InterfaceData() [2]uintptr {
    	v.mustBe(Interface)
    	// The compiler loses track as it converts to uintptr. Force escape.
    	escapes(v.ptr)
    	// We treat this as a read operation, so we allow
    	// it even for unexported data, because the caller
    	// has to import "unsafe" to turn it into something
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        }
    
        // Clamp with lower limit.
        auto lower_limit_attr = DenseIntElementsAttr::get(
            single_element_type, {static_cast<int64_t>(0)});
        auto lower_limit_cst =
            rewriter.create<arith::ConstantOp>(op->getLoc(), lower_limit_attr);
        // Dynamic start indices should be clamped with lower limit of
        // 0 as per semantics of `stablehlo.dynamic_slice`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    //	go doc <pkg> <sym>[.<methodOrField>]
    //
    // In all forms, when matching symbols, lower-case letters in the argument match
    // either case but upper-case letters match exactly. This means that there may be
    // multiple matches of a lower-case argument in a package if different symbols have
    // different cases. If this occurs, documentation for all matches is printed.
    //
    // Examples:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    	db.closed = true
    	db.connRequests.CloseAndRemoveAll()
    	db.mu.Unlock()
    	for _, fn := range fns {
    		err1 := fn()
    		if err1 != nil {
    			err = err1
    		}
    	}
    	db.stop()
    	if c, ok := db.connector.(io.Closer); ok {
    		err1 := c.Close()
    		if err1 != nil {
    			err = err1
    		}
    	}
    	return err
    }
    
    const defaultMaxIdleConns = 2
    
    func (db *DB) maxIdleConnsLocked() int {
    	n := db.maxIdleCount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    * azure: add PrimaryAvailabilitySet to config, only use nodes in that set in the loadbalancer pool ([#34526](https://github.com/kubernetes/kubernetes/pull/34526), [@colemickens](https://github.com/colemickens))
    * azure: lower log priority for skipped nic update message ([#34730](https://github.com/kubernetes/kubernetes/pull/34730), [@colemickens](https://github.com/colemickens))
    
    
    
    # v1.4.3
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

    * NodeController waits for informer sync before doing anything ([#34809](https://github.com/kubernetes/kubernetes/pull/34809), [@gmarek](https://github.com/gmarek))
    * azure: lower log priority for skipped nic update message ([#34730](https://github.com/kubernetes/kubernetes/pull/34730), [@colemickens](https://github.com/colemickens))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top