Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 120 for visitEnd (0.2 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

                             /*flatten_tuple=*/true);
    
      // auto new_token = new_if_results[new_if_results.size() - 1];
    
      region_if.erase();
    
      // Next op to visit. The replacement is visited but at its first region.
      // The new region use the same implicit token used by the If op.
      ops_to_visit.push_back({/*region_idx=*/0, token, new_if});
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

                // set of build dependencies than actually required. This is because it takes a lot of extra information
                // from the visited graph to properly filter artifacts by dependencySpec, and we don't want capture that when
                // calculating build dependencies.
                dependencySpec -> visitedArtifacts.select(getImplicitSelectionSpec(resolveContext))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    			// are extremely short (bounded by the nesting depth of interface
    			// type declarations that recur via parameter types, an extremely
    			// rare occurrence). An alternative implementation might use a
    			// "visited" map, but that is probably less efficient overall.
    			q := &ifacePair{xi, yi, p}
    			for p != nil {
    				if p.identical(q) {
    					return true // same pair was compared before
    				}
    				p = p.prev
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/mvs/mvs.go

    //
    // reqs describes the module requirement graph and provides an opaque method
    // for comparing versions.
    //
    // BuildList traverses the graph and returns a list containing the highest
    // version for each visited module. The first element of the returned list is
    // target itself; reqs.Max requires target.Version to compare higher than all
    // other versions, so no other version can be selected. The remaining elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/list/list.go

    		// already in PackageList order. Otherwise, calling load.PackageList
    		// provides the guarantee. In the case of an import cycle, the last package
    		// visited in the cycle, importing the first encountered package in the cycle,
    		// is visited first. The cycle import error will be bubbled up in the traversal
    		// order up to the first package in the cycle, covering all the packages
    		// in the cycle.
    		if !*listDeps {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

            /*
            dependencies:
    
            impl:1.3->api:1.3
            foo->api:1.5
            bar->impl:1.3(*)->api:1.3(*)
    
            * - should be excluded as it was already visited
            */
    
            buildFile << """
                $common
    
                dependencies {
                    conf 'org.utils:impl:1.3', 'org.stuff:foo:2.0', 'org.stuff:bar:2.0'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  7. src/image/jpeg/scan.go

    					// The blocks are traversed one MCU at a time. For 4:2:0 chroma
    					// subsampling, there are four Y 8x8 blocks in every 16x16 MCU.
    					//
    					// For a sequential 32x16 pixel image, the Y blocks visiting order is:
    					//	0 1 4 5
    					//	2 3 6 7
    					//
    					// For progressive images, the interleaved scans (those with nComp > 1)
    					// are traversed as above, but non-interleaved scans are traversed left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/Graphs.java

          return true;
        }
        return hasCycle(network.asGraph());
      }
    
      /**
       * Performs a traversal of the nodes reachable from {@code node}. If we ever reach a node we've
       * already visited (following only outgoing edges and without reusing edges), we know there's a
       * cycle in the graph.
       */
      private static <N> boolean subgraphHasCycle(
          Graph<N> graph,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    Interceptors are generated at Gradle build time and are packed into the distribution as described in [Gradle Distribution Build Time](#gradle-distribution-build-time).
    
    For jar visiting we use different implementations of [ClasspathElementTransform](https://github.com/gradle/gradle/blob/master/subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransform.java) interface.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            }
    
            and:
            customSchema instanceof ScalarValueSchema
        }
    
        def "validator is invoked after all dependencies have been visited"() {
            def strategy = Mock(ModelSchemaExtractionStrategy)
            def validator = Mock(Action)
            def extractor = new DefaultModelSchemaExtractor([strategy])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top