Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for returns_ (0.42 sec)

  1. src/database/sql/sql.go

    		ctx:                ctx,
    	}
    	go tx.awaitDone()
    	return tx, nil
    }
    
    // Driver returns the database's underlying driver.
    func (db *DB) Driver() driver.Driver {
    	return db.connector.Driver()
    }
    
    // ErrConnDone is returned by any operation that is performed on a connection
    // that has already been returned to the connection pool.
    var ErrConnDone = errors.New("sql: connection is already closed")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     */
    
        public int getContentLength() {
            try {
                return (int)(length() & 0xFFFFFFFFL);
            } catch( SmbException se ) {
            }
            return 0;
        }
    
    /**
     * This URLConnection method just returns the result of <tt>lastModified</tt>.
     *
     * @return the last modified data as milliseconds since Jan 1, 1970
     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * ClosingFuture, ClosingFuture)} to start this combination.
       *
       * @param <V1> the type returned by the first future
       * @param <V2> the type returned by the second future
       * @param <V3> the type returned by the third future
       * @param <V4> the type returned by the fourth future
       * @param <V5> the type returned by the fifth future
       */
      public static final class Combiner5<
              V1 extends @Nullable Object,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * ClosingFuture, ClosingFuture)} to start this combination.
       *
       * @param <V1> the type returned by the first future
       * @param <V2> the type returned by the second future
       * @param <V3> the type returned by the third future
       * @param <V4> the type returned by the fourth future
       * @param <V5> the type returned by the fifth future
       */
      public static final class Combiner5<
              V1 extends @Nullable Object,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        // AffineQuantizedOpInterface:
        int GetChannelDimIndex() { return 0; }
        int GetQuantizationDimIndex() { return 0; }
        // SparseOpInterface:
        std::vector<int> GetSparseOperands() { return {1}; }
        std::vector<std::vector<int>> GetFloatBlockSize() { return {}; }
        std::vector<std::vector<int>> GetQuantizedBlockSize() { return {}; }
    
        // Returns whether the return types are compatible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

          /*
           * standardToArray returns `@Nullable Object[]` rather than `Object[]` but because it can
           * be used with collections that may contain null. This collection never contains nulls, so we
           * could return `Object[]`. But this class is private and J2KT cannot change return types in
           * overrides, so we declare `@Nullable Object[]` as the return type.
           */
          return standardToArray();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

          /*
           * standardToArray returns `@Nullable Object[]` rather than `Object[]` but because it can
           * be used with collections that may contain null. This collection never contains nulls, so we
           * could return `Object[]`. But this class is private and J2KT cannot change return types in
           * overrides, so we declare `@Nullable Object[]` as the return type.
           */
          return standardToArray();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	}
    
    	return pullSecrets
    }
    
    // PodCouldHaveRunningContainers returns true if the pod with the given UID could still have running
    // containers. This returns false if the pod has not yet been started or the pod is unknown.
    func (kl *Kubelet) PodCouldHaveRunningContainers(pod *v1.Pod) bool {
    	if kl.podWorkers.CouldHaveRunningContainers(pod.UID) {
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	}
    	if v.flag&flagMethod != 0 {
    		return 0
    	}
    	return toRType(v.typ()).NumMethod()
    }
    
    // MethodByName returns a function value corresponding to the method
    // of v with the given name.
    // The arguments to a Call on the returned function should not include
    // a receiver; the returned function will always use v as the receiver.
    // It returns the zero Value if no method was found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
    
      // Enqueues callers on functions.
      void EnqueueCallers(func::FuncOp fn);
    
      // Returns the function at the front of the queue.
      func::FuncOp front() { return queue_.front(); }
    
      // Returns whether work queue is empty.
      bool EmptyQueue() const { return queue_.empty(); }
    
      // Returns function from the front of the work queue.
      func::FuncOp pop_front() {
        func::FuncOp ret = queue_.front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top