Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,905 for Consumes (0.21 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/net/http/httputil/dump.go

    // intact. HTTP/2 requests are dumped in HTTP/1.x form, not in their
    // original binary representations.
    //
    // If body is true, DumpRequest also returns the body. To do so, it
    // consumes req.Body and then replaces it with a new [io.ReadCloser]
    // that yields the same bytes. If DumpRequest returns an error,
    // the state of req is undefined.
    //
    // The documentation for [http.Request.Write] details which fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/internal/coverage/decodecounter/decodecounterfile.go

    	}
    	if cdr.ftr.NumSegments == 0 {
    		return fmt.Errorf("invalid counter data file (no segments)")
    	}
    	return nil
    }
    
    // readSegmentPreamble reads and consumes the segment header, segment string
    // table, and segment args table.
    func (cdr *CounterDataReader) readSegmentPreamble() error {
    	// Read segment header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    The simple solution is also limited to cases where this artifact is not published to a repository.
    This also implies that the consumer does not publish a dependency to this artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

            replicate_op_islands.push_back(island_op);
        }
      });
    
      // This number is unique within each function which is sufficient for
      // `UpdateControlDependenciesPass` which consumes the related attributes.
      // However, this assumes that we don't inline functions between this pass
      // and `UpdateControlDependenciesPass`.
      // If we need globally unique replica group IDs in the future,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top