Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 362 for subTable (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsProvidingService.java

     * the whole resource itself.
     *
     * @param <IN> a service specific type, representing a query of the service, which can be replayed later
     * @param <OUT> the fingerprint result of a service query, suitable for checking up-to-date status
     * @param <SERVICE> the type of the service
     */
    public interface ImplicitInputsProvidingService<IN, OUT, SERVICE> {
    
        SERVICE withImplicitInputRecorder(ImplicitInputRecorder registrar);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/VariantMetadataAdapter.java

    import org.gradle.internal.typeconversion.NotationParser;
    
    import javax.annotation.Nullable;
    
    /**
     * Adapts a mutable module component resolve metadata instance into a form that is suitable
     * for mutation through the Gradle DSL: we don't want to expose all the resolve component
     * metadata methods, only those which make sense, and that we can reason about safely. The adapter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go

    type xchacha20poly1305 struct {
    	key [KeySize]byte
    }
    
    // NewX returns a XChaCha20-Poly1305 AEAD that uses the given 256-bit key.
    //
    // XChaCha20-Poly1305 is a ChaCha20-Poly1305 variant that takes a longer nonce,
    // suitable to be generated randomly without risk of collisions. It should be
    // preferred when nonce uniqueness cannot be trivially ensured, or whenever
    // nonces are randomly generated.
    func NewX(key []byte) (cipher.AEAD, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.h

    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    // Run all the passes involved in transforming the graph before execution so
    // that it is suitable for targeting devices when called with the TF 2 Function
    // API. Users that need clustering with the Session API should use the v1 Bridge
    // API. These transformations take as input a Tensorflow Graph as an MLIR Module
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    // They are consumed by the kube-scheduler when a CSI driver opts into
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/runtime/rand.go

    	// See https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction/
    	return uint32((uint64(uint32(rand())) * uint64(n)) >> 32)
    }
    
    // cheaprand is a non-cryptographic-quality 32-bit random generator
    // suitable for calling at very high frequency (such as during scheduling decisions)
    // and at sensitive moments in the runtime (such as during stack unwinding).
    // it is "cheap" in the sense of both expense and quality.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/InstrumentedInputsListener.java

        /**
         * Invoked when the code starts an external process. The command string with all argument is provided for reporting but its value may not be suitable to actually invoke the command because all
         * arguments are joined together (separated by space) and there is no escaping of special characters.
         *
         * @param command the command used to start the process (with arguments)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/net/http/httptest/httptest.go

    func NewRequest(method, target string, body io.Reader) *http.Request {
    	return NewRequestWithContext(context.Background(), method, target, body)
    }
    
    // NewRequestWithContext returns a new incoming server Request, suitable
    // for passing to an [http.Handler] for testing.
    //
    // The target is the RFC 7230 "request-target": it may be either a
    // path or an absolute URL. If target is an absolute URL, the host name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/internal/poll/fd.go

    func (e *DeadlineExceededError) Timeout() bool   { return true }
    func (e *DeadlineExceededError) Temporary() bool { return true }
    
    // ErrNotPollable is returned when the file or socket is not suitable
    // for event notification.
    var ErrNotPollable = errors.New("not pollable")
    
    // consume removes data from a slice of byte slices, for writev.
    func consume(v *[][]byte, n int64) {
    	for len(*v) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

      ModuleOp module = getOperation();
      // This pass assumes that all functions are suitable for export, i.e., each
      // function has a single tf_executor.graph op and all islands wrap single
      // ops.
      if (failed(tensorflow::VerifyExportSuitable(module))) {
        module.emitOpError() << "not suitable for checking control dependencies";
        return;
      }
      TF::SideEffectAnalysis side_effect_analysis(module);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top