Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 896 for Consumes (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

    //
    // The pass currently assumes that there is no circular dependency among the
    // per-host functions. For example, if there exists an operation placed on
    // host_A that consumes the result of an operation placed on host_B, then there
    // does not exist any operation placed on host_B that conumes any result of any
    // operation placed on host_A.
    
    #include <optional>
    
    #include "mlir/IR/Builders.h"
    #include "mlir/Pass/Pass.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    appearing in the `api` configurations will be transitively exposed to consumers of the library, and as such will appear on the compile classpath of consumers. Dependencies found in the `implementation` configuration will, on the other hand, not be exposed to consumers, and therefore not leak into the consumers' compile classpath. This comes with several benefits:
    
    * dependencies do not leak into the compile classpath of consumers anymore, so you will never accidentally depend on a transitive dependency...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. src/runtime/mgcwork.go

    }
    
    // Garbage collector work pool abstraction.
    //
    // This implements a producer/consumer model for pointers to grey
    // objects. A grey object is one that is marked and on a work
    // queue. A black object is marked and not on a work queue.
    //
    // Write barriers, root discovery, stack scanning, and object scanning
    // produce pointers to grey objects. Scanning consumes pointers to
    // grey objects, thus blackening them, and then scans them,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. src/net/net.go

    library routines such as getaddrinfo and getnameinfo.
    
    On Unix the pure Go resolver is preferred over the cgo resolver, because a blocked DNS
    request consumes only a goroutine, while a blocked C call consumes an operating system thread.
    When cgo is available, the cgo-based resolver is used instead under a variety of
    conditions: on systems that do not let programs make direct DNS requests (OS X),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. src/mime/multipart/multipart.go

    		}
    	}
    
    	return -1
    }
    
    func (p *Part) Close() error {
    	io.Copy(io.Discard, p)
    	return nil
    }
    
    // Reader is an iterator over parts in a MIME multipart body.
    // Reader's underlying parser consumes its input as needed. Seeking
    // isn't supported.
    type Reader struct {
    	bufReader *bufio.Reader
    	tempDir   string // used in tests
    
    	currentPart *Part
    	partsRead   int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	// Backwards compatibility, we accepted objects with empty content-type at V1.
    	// If we stop using go-restful, we can default empty content-type to application/json on an
    	// endpoint by endpoint basis
    	ws.Consumes("*/*")
    	mediaTypes, streamMediaTypes := negotiation.MediaTypesForSerializer(a.group.Serializer)
    	ws.Produces(append(mediaTypes, streamMediaTypes...)...)
    	ws.ApiVersion(a.group.GroupVersion.String())
    
    	return ws
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_working_pods gauge
    				kubelet_working_pods{config="desired",lifecycle="sync",static=""} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. src/runtime/HACKING.md

    `note`:`notesleep` also prevents rescheduling of any associated G and
    P, while `notetsleepg` acts like a blocking system call that allows
    the P to be reused to run another G. This is still less efficient than
    blocking the G directly since it consumes an M.
    
    To interact directly with the goroutine scheduler, use `gopark` and
    `goready`. `gopark` parks the current goroutine—putting it in the
    "waiting" state and removing it from the scheduler's run queue—and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/concepts.md

    And if your remote server or virtual machine only has 3 GB of RAM, trying to load more than 4 GB of RAM will cause problems. 🚨
    
    ### Multiple Processes - An Example
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. tensorflow/c/eager/tape.h

    class VSpace {
     public:
      virtual ~VSpace() {}
    
      // Returns the number of elements in the gradient tensor.
      virtual int64_t NumElements(Gradient* tensor) const = 0;
    
      // Consumes references to the tensors in the gradient_tensors list and returns
      // a tensor with the result.
      virtual Gradient* AggregateGradients(
          gtl::ArraySlice<Gradient*> gradient_tensors) const = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
Back to top