Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 184 for Traverse (0.27 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Bswap64", argLength: 1}, // Swap bytes
    
    	{name: "BitRev8", argLength: 1},  // Reverse the bits in arg[0]
    	{name: "BitRev16", argLength: 1}, // Reverse the bits in arg[0]
    	{name: "BitRev32", argLength: 1}, // Reverse the bits in arg[0]
    	{name: "BitRev64", argLength: 1}, // Reverse the bits in arg[0]
    
    	{name: "PopCount8", argLength: 1},  // Count bits in arg[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.set(upstream)
    
            when:
            property.replace { it.map { v -> v.collect { s -> s.reverse() } } }
            upstream.set(someOtherValue())
    
            then:
            property.get() as Set<String> == someOtherValue().collect { it.reverse() } as Set<String>
        }
    
        def "returning null from replace unsets the property"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/go/types/call.go

    		//
    		//    var tvar tsig = x
    		//
    		// like a call g(tvar) of the synthetic generic function g
    		//
    		//    func g[type_parameters_of_x](func_type_of_x)
    		//
    		var args []*operand
    		var params []*Var
    		var reverse bool
    		if T != nil && sig.tparams != nil {
    			if !versionErr && !check.allowVersion(instErrPos, go1_21) {
    				if ix != nil {
    					check.versionErrorf(instErrPos, go1_21, "partially instantiated function in assignment")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

                    @Override
                    public void run() {
                        registryUpdater.onCancel();
                    }
                };
    
                // Start the pipeline in reverse order:
                // 1. mark daemon as running
                // 2. start handling incoming commands
                // 3. start accepting incoming connections
                // 4. advertise presence in registry
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/extensions.kt

                    conditionType = BuildFailureOnText.ConditionType.CONTAINS
                    pattern = "%unmaskedFakeCredentials%"
                    failureMessage = "This build might be leaking credentials"
                    reverse = false
                    stopBuildOnFailure = true
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  6. pilot/pkg/serviceregistry/kube/controller/pod.go

    	// this allows us to retrieve the latest status by pod IP.
    	// This should only contain RUNNING or PENDING pods with an allocated IP.
    	podsByIP map[string]sets.Set[types.NamespacedName]
    	// IPByPods is a reverse map of podsByIP. This exists to allow us to prune stale entries in the
    	// pod cache if a pod changes IP.
    	IPByPods map[types.NamespacedName]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    func (path typePath) String() string {
    	n := len(path)
    	var buf bytes.Buffer
    	for i := range path {
    		if i > 0 {
    			fmt.Fprint(&buf, " contains ")
    		}
    		// The human-readable path is in reverse order, outermost to innermost.
    		fmt.Fprint(&buf, path[n-i-1])
    	}
    	return buf.String()
    }
    
    func lockPathRhs(pass *analysis.Pass, x ast.Expr) typePath {
    	x = astutil.Unparen(x) // ignore parens on rhs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            File parent = dir.getParentFile();
            while (!parent.exists()) {
                toCreate.add(parent);
                parent = parent.getParentFile();
            }
    
            Collections.reverse(toCreate);
            for (File parentDirToCreate : toCreate) {
                if (parentDirToCreate.isDirectory()) {
                    continue;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/shape_inference.cc

      for (const auto& e : back_edges) {
        if (e.src->IsNextIteration() && e.dst->IsMerge()) {
          merge_to_next_iteration[e.dst] = e.src;
        }
      }
    
      // Visits the nodes in topological order (reverse post-order), inferring
      // shapes.
      // TODO(phawkins): handle cyclic graphs.
      std::vector<Node*> order;
      GetReversePostOrder(*graph, &order);
    
      for (Node* n : order) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // with parallel_ids `{group0:branch0}` and `{group0:branch1}` live at
      // stack depth 1 and are depended on by ops with parallel_ids `{}`.
      StackResourceToOps stack_up_;
    
      // Parallel ids of the previously traversed op in the same function.
      // The transition from the previous parallel_ids to the current parallel_ids
      // determines which stack actions occur.
      ParallelIdsMap previous_parallel_ids_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top