Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for embeddeds (6.17 sec)

  1. src/cmd/go/internal/load/pkg.go

    	SwigCXXFiles      []string `json:",omitempty"` // .swigcxx files
    	SysoFiles         []string `json:",omitempty"` // .syso system object files added to package
    
    	// Embedded files
    	EmbedPatterns []string `json:",omitempty"` // //go:embed patterns
    	EmbedFiles    []string `json:",omitempty"` // files matched by EmbedPatterns
    
    	// Cgo directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def XlaCallModuleDeserializationPass
        : Pass<"tf-xla-call-module-deserialization", "ModuleOp"> {
      let summary = "Deserializes StableHLO functions embedded in `tf.XlaCallModule` to top level module";
    
      let description = [{
        This pass deserializes the StableHLO bytecodes embedded in tf.XlaCallModule,
        then outlines the functions in the deserialized StableHLO module to the top
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Infers the shape CaseRegion outputs based on the shapes of the branch
      // yields.
      bool InferShapeForCaseRegion(CaseRegionOp op);
    
      // Infers the shape CaseRegion outputs based on the embedded StableHLO module.
      // Returns true if a return type was changed.
      bool InferShapeForXlaCallModule(XlaCallModuleOp op);
    
      // Infers the shape of _XlaHostComputeMlir based on the host computation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // unescaped) to tell the user why their request was bad. It should
    // be plain text without user info or other embedded errors.
    func badRequestError(e string) error { return statusError{StatusBadRequest, e} }
    
    // statusError is an error used to respond to a request with an HTTP status.
    // The text should be plain text without user info or other embedded errors.
    type statusError struct {
    	code int
    	text string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //	    SysoFiles         []string   // .syso object files to add to archive
    //	    TestGoFiles       []string   // _test.go files in package
    //	    XTestGoFiles      []string   // _test.go files outside package
    //
    //	    // Embedded files
    //	    EmbedPatterns      []string // //go:embed patterns
    //	    EmbedFiles         []string // files matched by EmbedPatterns
    //	    TestEmbedPatterns  []string // //go:embed patterns in TestGoFiles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. licenses/javolution.license.TXT Javolution - Java(TM) Solution for Real-Time and Embedded Systems Copyright (c) 2006, Javolution (http://javolution.org) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 200.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. licenses/javolution.license.TXT Javolution - Java(TM) Solution for Real-Time and Embedded Systems Copyright (c) 2006, Javolution (http://javolution.org) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * <pre>
         * message: Login failed.
         * comment:
         * /- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
         * five framework-embedded messages (don't change key names)
         * - - - - - - - - - -/
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @return this. (NotNull)
         */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    			t.Fatalf("error creating DaemonSets controller: %v", err)
    		}
    		addNodes(manager.nodeStore, 0, 1, nil)
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    		// DeletedFinalStateUnknown should queue the embedded DS if found.
    		manager.deleteDaemonset(logger, cache.DeletedFinalStateUnknown{Key: "foo", Obj: ds})
    		enqueuedKey, _ := manager.queue.Get()
    		if enqueuedKey != "default/foo" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    void XlaCallModuleOp::getEffects(
        SmallVectorImpl<SideEffects::EffectInstance<MemoryEffects::Effect>>
            &effects) {
      if (!getFunctionList().empty()) {
        // The StableHLO module embedded in XlaCallModule contains
        // `stablehlo.custom_call` calling TF host callback functions.
        // `stablehlo.custom_call` will be lowered to `stablehlo.send` and
        // `stablehlo.recv`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top