Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Traverser (0.27 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		if wantParens {
    			ps.endScope(')')
    		}
    	} else {
    		parenthesize(ps, t.Third)
    	}
    }
    
    func (t *Trinary) Traverse(fn func(AST) bool) {
    	if fn(t) {
    		t.Op.Traverse(fn)
    		t.First.Traverse(fn)
    		t.Second.Traverse(fn)
    		t.Third.Traverse(fn)
    	}
    }
    
    func (t *Trinary) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(t) {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "json-schema-traverse": "^0.4.1",
            "uri-js": "^4.2.2"
          },
          "funding": {
            "type": "github",
            "url": "https://github.com/sponsors/epoberezkin"
          }
        },
        "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": {
          "version": "0.4.1",
          "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

        void operator=(const Iterator& other);
    
        const ParamGeneratorInterface<ParamType>* const base_;
        // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
        // current[i]_ is the actual traversing iterator.
        const typename ParamGenerator<T1>::iterator begin1_;
        const typename ParamGenerator<T1>::iterator end1_;
        typename ParamGenerator<T1>::iterator current1_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

        void operator=(const Iterator& other);
    
        const ParamGeneratorInterface<ParamType>* const base_;
        // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
        // current[i]_ is the actual traversing iterator.
        const typename ParamGenerator<T1>::iterator begin1_;
        const typename ParamGenerator<T1>::iterator end1_;
        typename ParamGenerator<T1>::iterator current1_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          // dependencies present in the original graph.
          continue;
        }
        if (node_values_.find(input_node.id()) == node_values_.end())
          return errors::FailedPrecondition(
              "Graph not traversed in reverse post order; use seen before def!");
        mlir::Operation* inst = node_values_[input_node.id()];
        if (input_edge->IsControlEdge())
          control_operands.push_back(inst->getResult(inst->getNumResults() - 1));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    		},
    	}
    	VisitPodSecretNames(emptyPod, func(name string) bool {
    		t.Fatalf("expected no empty names collected, got %q", name)
    		return false
    	}, AllContainers)
    }
    
    // collectResourcePaths traverses the object, computing all the struct paths that lead to fields with resourcename in the name.
    func collectResourcePaths(t *testing.T, resourcename string, path *field.Path, name string, tp reflect.Type) sets.Set[string] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    	file := r.Form.Get("file")
    	if len(file) == 0 {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInvalidRequest), r.URL)
    		return
    	}
    
    	file = filepath.ToSlash(file)
    	// Reject attempts to traverse parent or absolute paths.
    	if hasBadPathComponent(volume) || hasBadPathComponent(file) {
    		writeErrorResponse(r.Context(), w, errorCodes.ToAPIErr(ErrInvalidResourceName), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

         * be read without locking. Next fields of nodes are immutable (final). All list additions are
         * performed at the front of each bin. This makes it easy to check changes, and also fast to
         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        tensorlist = worklist.top();
        worklist.pop();
    
        // TensorLists are semantically immutable. For example, TensorListSetItem
        // takes a TensorList as input and produces a TensorList as output. So to
        // traverse modifications to TensorList and verify that all elements written
        // to it have the same shape, we need to follow use-def chain of ops that
        // (conceptually) modify it i.e., ops that take an input TensorList and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    //===----------------------------------------------------------------------===//
    // TransposeOp
    //===----------------------------------------------------------------------===//
    
    namespace {
    
    // The function recursively traverses the dimensions of the output tensor in
    // a row-major order and writes the value of the output tensor into
    // `output_element_addr`.
    // TODO(@lukeboyer) make element byte size a template param.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top