Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 449 for returns_ (0.32 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    		return true
    	}
    	return false
    }
    
    // HasFilterPlugins returns true if at least one filter plugin is defined.
    func (f *frameworkImpl) HasFilterPlugins() bool {
    	return len(f.filterPlugins) > 0
    }
    
    // HasPostFilterPlugins returns true if at least one postFilter plugin is defined.
    func (f *frameworkImpl) HasPostFilterPlugins() bool {
    	return len(f.postFilterPlugins) > 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSortedMap.java

      public static <K, V> ImmutableSortedMap<K, V> of() {
        return (ImmutableSortedMap<K, V>) NATURAL_EMPTY_MAP;
      }
    
      /** Returns an immutable map containing a single entry. */
      public static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> of(K k1, V v1) {
        return of(Ordering.natural(), k1, v1);
      }
    
      /** Returns an immutable map containing a single entry. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

      bool (*is_directory)(const TF_Filesystem* filesystem, const char* path,
                           TF_Status* status);
    
      /// Returns the size of the file given by `path`.
      ///
      /// If `status` is not `TF_OK`, return value is undefined. Otherwise, returns
      /// the same as `length` member of a `TF_FileStatistics` that would be used on
      /// the equivalent call of `stat`.
      ///
      /// Plugins:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	return envProxyFunc()(req.URL)
    }
    
    // ProxyURL returns a proxy function (for use in a [Transport])
    // that always returns the same URL.
    func ProxyURL(fixedURL *url.URL) func(*Request) (*url.URL, error) {
    	return func(*Request) (*url.URL, error) {
    		return fixedURL, nil
    	}
    }
    
    // transportRequest is a wrapper around a *Request that adds
    // optional extra headers to write and stores any error to return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // types. If the returned resource traces back to an input argument for the
      // SPC, then replace uses of the returned copy with the original input.
      //
      // Note: This does not descend through nested SCPs.
      auto ComesFromBlockArgNumber = [](Value val) -> int {
        while (true) {
          if (auto block_arg = llvm::dyn_cast<BlockArgument>(val)) {
            return block_arg.getArgNumber();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    		return j.ObjectV1.Signature()
    	}
    	return signatureErr
    }
    
    // getModTime will return the ModTime of the underlying version.
    func (j xlMetaV2Version) getModTime() time.Time {
    	switch j.Type {
    	case ObjectType:
    		return time.Unix(0, j.ObjectV2.ModTime)
    	case DeleteType:
    		return time.Unix(0, j.DeleteMarker.ModTime)
    	case LegacyType:
    		return j.ObjectV1.Stat.ModTime
    	}
    	return time.Time{}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      public static <K, V> ImmutableSortedMap<K, V> of() {
        return (ImmutableSortedMap<K, V>) NATURAL_EMPTY_MAP;
      }
    
      /** Returns an immutable map containing a single entry. */
      public static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> of(K k1, V v1) {
        return of(Ordering.natural(), k1, v1);
      }
    
      /** Returns an immutable map containing a single entry. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    func (hc *halfConn) explicitNonceLen() int {
    	if hc.cipher == nil {
    		return 0
    	}
    
    	switch c := hc.cipher.(type) {
    	case cipher.Stream:
    		return 0
    	case aead:
    		return c.explicitNonceLen()
    	case cbcMode:
    		// TLS 1.1 introduced a per-record explicit IV to fix the BEAST attack.
    		if hc.version >= VersionTLS11 {
    			return c.BlockSize()
    		}
    		return 0
    	default:
    		panic("unknown cipher type")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        }
        if (auto block_arg = parent.dyn_cast<mlir::BlockArgument>()) {
          return block_arg.getArgNumber();
        }
        // Returns -1 if we don't find which this result maps to.
        return -1;
      };
    
      llvm::SmallVector<Value, 4> returns;
      for (auto res : func.getBody().back().getTerminator()->getOperands()) {
        returns.push_back(res);
      }
      llvm::DenseMap<int, int> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // Analyzes attached regions to record resources read and written.
      LogicalResult Analyze();
    
      // Returns all resources accessed by the regions attached the op.
      auto& GetResources() { return resources_; }
    
      // Returns if the given value is a resource that needs lifting.
      bool Contains(Value resource) const {
        return resources_.find(resource) != resources_.end();
      }
    
      // Drops the given resource from lifting.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top