Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 134 for interop (0.25 sec)

  1. src/crypto/hmac/hmac.go

    	// calls to Reset and Sum instead of writing ipad/opad every time.
    	//
    	// If either hash is unmarshalable for whatever reason,
    	// it's safe to bail out here.
    	marshalableInner, innerOK := h.inner.(marshalable)
    	if !innerOK {
    		return
    	}
    	marshalableOuter, outerOK := h.outer.(marshalable)
    	if !outerOK {
    		return
    	}
    
    	imarshal, err := marshalableInner.MarshalBinary()
    	if err != nil {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/net/http/routing_tree.go

    package http
    
    import (
    	"strings"
    )
    
    // A routingNode is a node in the decision tree.
    // The same struct is used for leaf and interior nodes.
    type routingNode struct {
    	// A leaf node holds a single pattern and the Handler it was registered
    	// with.
    	pattern *pattern
    	handler Handler
    
    	// An interior node maps parts of the incoming request to child nodes.
    	// special children keys:
    	//     "/"	trailing slash (resulting from {$})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FingerprintMapSerializer.java

            for (int i = 0; i < fingerprintCount; i++) {
                String absolutePath = stringInterner.intern(decoder.readString());
                FileSystemLocationFingerprint fingerprint = readFingerprint(decoder);
                fingerprints.put(absolutePath, fingerprint);
            }
            return fingerprints.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/graph_pruning.cc

    }
    
    // An island should be preserved if any of its inner ops should be preserved.
    bool GraphPruningPass::ShouldPreserveIsland(IslandOp island) {
      auto result = island.walk([this](Operation* inner_op) {
        if (ShouldPreserveOp(inner_op)) return WalkResult::interrupt();
        return WalkResult::advance();
      });
      return result.wasInterrupted();
    }
    
    // Prunes unreachable operations of a tf_executor.graph operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    					break FixSegment
    				}
    			case PrefixDS:
    				if inst.Mode != 64 {
    					break FixSegment
    				}
    			}
    		}
    	}
    
    	if op == "" {
    		op = intelOp[inst.Op]
    	}
    	if op == "" {
    		op = strings.ToLower(inst.Op.String())
    	}
    	if args != nil {
    		op += " " + strings.Join(args, ", ")
    	}
    	return prefix + op
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  6. test/const.go

    	f = c3div2
    	assert(f == c3div2, "f == c3div2")
    	f = c1e3
    	assert(f == c1e3, "f == c1e3")
    }
    
    func floats() {
    	assert(f0 == c0, "f0")
    	assert(f1 == c1, "f1")
    	// TODO(gri): exp/ssa/interp constant folding is incorrect.
    	if os.Getenv("GOSSAINTERP") == "" {
    		assert(fhuge == fhuge_1, "fhuge") // float64 can't distinguish fhuge, fhuge_1.
    	}
    	assert(fhuge_1+1 == fhuge, "fhuge 1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 23:54:29 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

        } else if (auto island =
                       llvm::dyn_cast<mlir::tf_executor::IslandOp>(inst)) {
          Operation& inner_op = island.GetBody().front();
          auto op_name = GetTensorFlowOpName(inner_op.getName().getStringRef());
          if (llvm::isa<FuncOp>(inner_op) && op_name.ok()) {
            // If it is TF Control dialect specific op, look up custom operation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

        } else if (auto island =
                       llvm::dyn_cast<mlir::tf_executor::IslandOp>(inst)) {
          Operation& inner_op = island.GetBody().front();
          auto op_name = GetTensorFlowOpName(inner_op.getName().getStringRef());
          if (llvm::isa<FuncOp>(inner_op) && op_name.ok()) {
            // If it is TF Control dialect specific op, look up custom operation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    func elfinterp(sh *ElfShdr, startva uint64, resoff uint64, p string) int {
    	interp = p
    	n := len(interp) + 1
    	sh.Addr = startva + resoff - uint64(n)
    	sh.Off = resoff - uint64(n)
    	sh.Size = uint64(n)
    
    	return n
    }
    
    func elfwriteinterp(out *OutBuf) int {
    	sh := elfshname(".interp")
    	out.SeekSet(int64(sh.Off))
    	out.WriteString(interp)
    	out.Write8(0)
    	return int(sh.Size)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. docs/fr/docs/tutorial/debugging.md

    #### Pour davantage de détails
    
    Imaginons que votre fichier s'appelle `myapp.py`.
    
    Si vous l'exécutez avec :
    
    <div class="termy">
    
    ```console
    $ python myapp.py
    ```
    
    </div>
    
    alors la variable interne `__name__` de votre fichier, créée automatiquement par Python, aura pour valeur la chaîne de caractères `"__main__"`.
    
    Ainsi, la section :
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Mar 06 16:26:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top