Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 123 for getConf (0.12 sec)

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

    import static com.google.common.util.concurrent.AggregateFuture.ReleaseResourcesReason.OUTPUT_FUTURE_DONE;
    import static com.google.common.util.concurrent.Futures.getDone;
    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    import static java.util.Objects.requireNonNull;
    import static java.util.logging.Level.SEVERE;
    
    import com.google.common.annotations.GwtCompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. src/net/http/transport_internal_test.go

    	ctx, cancel := context.WithCancelCause(context.Background())
    	treq := &transportRequest{Request: req, ctx: ctx, cancel: cancel}
    	cm := connectMethod{targetScheme: "http", targetAddr: ln.Addr().String()}
    	pc, err := tr.getConn(treq, cm)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer pc.close(errors.New("test over"))
    
    	conn := <-connc
    	if conn == nil {
    		// Already called t.Error in the accept goroutine.
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

                                                    while_op.getInput());
          }
          return;
        }
        if (auto while_op = dyn_cast<TF::WhileRegionOp>(op)) {
          PropagatePotentiallyWrittenUpFromCallee(while_op.getCond(),
                                                  while_op.getInput());
          PropagatePotentiallyWrittenUpFromCallee(while_op.getBody(),
                                                  while_op.getInput());
          return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

    import static com.google.common.util.concurrent.AggregateFuture.ReleaseResourcesReason.OUTPUT_FUTURE_DONE;
    import static com.google.common.util.concurrent.Futures.getDone;
    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    import static java.util.Objects.requireNonNull;
    import static java.util.logging.Level.SEVERE;
    
    import com.google.common.annotations.GwtCompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    func LbPriority(proxyLocality, endpointsLocality *core.Locality) int {
    	if proxyLocality.GetRegion() == endpointsLocality.GetRegion() {
    		if proxyLocality.GetZone() == endpointsLocality.GetZone() {
    			if proxyLocality.GetSubZone() == endpointsLocality.GetSubZone() {
    				return 0
    			}
    			return 1
    		}
    		return 2
    	}
    	return 3
    }
    
    // return a shallow copy ClusterLoadAssignment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/UnsignedBytes.java

             */
            for (i = 0; i < strideLimit; i += stride) {
              long lw = theUnsafe.getLong(left, BYTE_ARRAY_BASE_OFFSET + (long) i);
              long rw = theUnsafe.getLong(right, BYTE_ARRAY_BASE_OFFSET + (long) i);
              if (lw != rw) {
                if (BIG_ENDIAN) {
                  return UnsignedLongs.compare(lw, rw);
                }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/UnsignedBytes.java

             */
            for (i = 0; i < strideLimit; i += stride) {
              long lw = theUnsafe.getLong(left, BYTE_ARRAY_BASE_OFFSET + (long) i);
              long rw = theUnsafe.getLong(right, BYTE_ARRAY_BASE_OFFSET + (long) i);
              if (lw != rw) {
                if (BIG_ENDIAN) {
                  return UnsignedLongs.compare(lw, rw);
                }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

    // and retuns values corresponding to that result are dropped.
    LogicalResult CanonicalizeWhileRegion(TF::WhileRegionOp op) {
      Region &body = op.getBody();
      Region &cond = op.getCond();
      llvm::BitVector can_eliminate(op.getNumResults());
    
      // Traverse in reverse order so that indices to be deleted stay unchanged.
      for (OpResult result : llvm::reverse(op.getResults())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                            communication_key_index++)
                  .str();
          auto& cond = host_while.getCond();
          cond.push_back(new Block);
          auto condition =
              while_op.getCond().front().getTerminator()->getOperand(0);
          builder.setInsertionPoint(while_op.getCond().front().getTerminator());
          builder.create<mlir::TF::XlaSendToHostOp>(while_op.getLoc(), condition,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

            }
    
            static String ignoredStatic
            private String ignoredPrivate
    
            private Number getPrivate() {
                return 12
            }
    
            static Long getLong() {
                return 12L
            }
        }
    
        interface SomeInterface {
            Number getProp()
    
            void setProp(Number value)
    
            String getReadOnly()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top