Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for node_map (0.17 sec)

  1. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.pprof.node_map

    Michael Pratt <******@****.***> 1709576979 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/pgo/inline/inline_hot.pprof.node_map

    Michael Pratt <******@****.***> 1709576979 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 267 bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                return;
              }
    
              Node* copy;
              if (node_map.find(n) != node_map.end()) {
                // Already copied this node.
                copy = node_map.at(n);
              } else if (IsKeyPlaceholderNode(*n)) {
                // Change a).
                copy = key_placeholder;
                node_map[n] = copy;
              } else {
                // Copy the node.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. src/syscall/mksysctl_openbsd.pl

    		my @node = @{$node{$key}};
    		my $nodename = $name.($name ne '' ? '.' : '').$key;
    		my @nodeoid = (@oid, $node[0]);
    		if ($node[1] eq 'CTLTYPE_NODE') {
    			if (exists $node_map{$nodename}) {
    				$node = \%mib;
    				$ctlname = $node_map{$nodename};
    				foreach my $part (split /\./, $ctlname) {
    					$node = \%{@{$$node{$part}}[2]};
    				}
    			} else {
    				$node = $node[2];
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/pgo_devirtualize_test.go

    	"os"
    	"path/filepath"
    	"regexp"
    	"testing"
    )
    
    type devirtualization struct {
    	pos    string
    	callee string
    }
    
    const profFileName = "devirt.pprof"
    const preProfFileName = "devirt.pprof.node_map"
    
    // testPGODevirtualize tests that specific PGO devirtualize rewrites are performed.
    func testPGODevirtualize(t *testing.T, dir string, want []devirtualization, pgoProfileName string) {
    	testenv.MustHaveGoRun(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 21:30:35 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/pgo_inl_test.go

    	"bytes"
    	"fmt"
    	"internal/profile"
    	"internal/testenv"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"strings"
    	"testing"
    )
    
    const profFile = "inline_hot.pprof"
    const preProfFile = "inline_hot.pprof.node_map"
    
    func buildPGOInliningTest(t *testing.T, dir string, gcflag string) []byte {
    	const pkg = "example.com/pgo/inline"
    
    	// Add a go.mod so we have a consistent symbol names in this temp dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelMap.java

     * @param <T> the contract type for all items
     */
    @Incubating
    public interface ModelMap<T> extends Iterable<T>, ModelElement {
        /**
         * Returns a collection containing the items from this collection which are of the specified type.
         *
         * @param type The type.
         * @param <S> The type.
         * @return The collection.
         */
        <S> ModelMap<S> withType(Class<S> type);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // TODO(jpienaar): This really shouldn't be needed, copying the Graph above
      // and then needing these traversals is unfortunate.
      std::unordered_map<string, Node*> node_map = from.BuildNodeNameIndex();
      for (Node* node : to->nodes()) {
        if (const Node* old_node = node_map[node->name()]) {
          if (const std::shared_ptr<AbstractStackTrace>& stack =
                  old_node->GetStackTrace()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    			driverName: "com.example.csi.driver1",
    			existingNode: generateNode(
    				nodeIDMap{
    					"com.example.csi.driver1": "com.example.csi/csi-node1",
    				},
    				labelMap{
    					"com.example.csi/zone": "zoneA",
    				},
    				nil /*capacity*/),
    			existingCSINode: generateCSINode(
    				nodeIDMap{
    					"com.example.csi.driver1": "com.example.csi/csi-node1",
    				},
    				nil, /* volumeLimits */
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/ManagedModelMapTypesTest.groovy

            when:
            schemaStore.getSchema(ModelTypes.modelMap(ManagedThing))
    
            then:
            noExceptionThrown()
        }
    
        def "must have type param"() {
            when:
            schemaStore.getSchema(ModelType.of(ModelMap))
    
            then:
            def e = thrown InvalidManagedModelElementTypeException
            e.message == """Type $ModelMap.name is not a valid model element type:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top