Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 219 for Traverser (0.19 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

        // No implementation - assignment is unsupported.
        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.
    $for j [[
    
        const typename ParamGenerator<T$j>::iterator begin$(j)_;
        const typename ParamGenerator<T$j>::iterator end$(j)_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

      }
    }
    
    void CheckControlDependenciesForFunc(
        func::FuncOp func, const TF::SideEffectAnalysis::Info& analysis_for_func,
        int& path_idx) {
      IslandToIslandMapVec op_to_control_sources;
    
      // Traverse islands in topological order.
      func.walk([&](IslandOp source_island) {
        for (Operation* user : source_island.getControl().getUsers()) {
          auto target_island = dyn_cast<IslandOp>(user);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    func (r *Result) IntoSingleItemImplied(b *bool) *Result {
    	*b = r.singleItemImplied
    	return r
    }
    
    // Infos returns an array of all of the resource infos retrieved via traversal.
    // Will attempt to traverse the entire set of visitors only once, and will return
    // a cached list on subsequent calls.
    func (r *Result) Infos() ([]*Info, error) {
    	if r.err != nil {
    		return nil, r.err
    	}
    	if r.info != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  4. src/reflect/deepequal.go

    // DeepEqual has been defined so that the same short-cut applies
    // to slices and maps: if x and y are the same slice or the same map,
    // they are deeply equal regardless of content.
    //
    // As DeepEqual traverses the data values it may find a cycle. The
    // second and subsequent times that DeepEqual compares two pointer
    // values that have been compared before, it treats the values as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    // - Like all reference counting schemes, cycles lead to leaks.
    // - Each smart pointer is actually two pointers (8 bytes instead of 4).
    // - Every time a pointer is assigned, the entire list of pointers to that
    //   object is traversed.  This class is therefore NOT SUITABLE when there
    //   will often be more than two or three pointers to a particular object.
    // - References are only tracked as long as linked_ptr<> objects are copied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/crypto/x509/root_windows.go

    	// setting this flag will add additional lower quality contexts.
    	// These are returned in the LowerQualityChains field.
    	const CERT_CHAIN_RETURN_LOWER_QUALITY_CONTEXTS = 0x00000080
    
    	// CertGetCertificateChain will traverse Windows's root stores in an attempt to build a verified certificate chain
    	var topCtx *syscall.CertChainContext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. .teamcity/mvnw

      exit 1
    fi
    
    if [ -z "$JAVA_HOME" ] ; then
      echo "Warning: JAVA_HOME environment variable is not set."
    fi
    
    CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
    
    # traverses directory structure from process work directory to filesystem root
    # first directory with .mvn subdirectory is considered project base directory
    find_maven_basedir() {
    
      if [ -z "$1" ]
      then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

        // No implementation - assignment is unsupported.
        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.
    $for j [[
    
        const typename ParamGenerator<T$j>::iterator begin$(j)_;
        const typename ParamGenerator<T$j>::iterator end$(j)_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. internal/s3select/sql/aggregation.go

    func (e *FuncExpr) aggregateRow(r Record, tableAlias string) error {
    	switch e.getFunctionName() {
    	case aggFnAvg, aggFnSum, aggFnMax, aggFnMin, aggFnCount:
    		return e.evalAggregationNode(r, tableAlias)
    	default:
    		// TODO: traverse arguments and call aggregateRow on
    		// them if they could be an ancestor of an
    		// aggregation.
    	}
    	return nil
    }
    
    // getAggregate() implementation for each AST node follows. This is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    			// As we are comparing if a CIDR is within another CIDR, we first mask the base CIDR and
    			// also compare the CIDR bits.
    			// This has an additional cost of the length of the IP being traversed again, plus 1.
    			cost += uint64(math.Ceil(float64(cidrSize)*common.StringTraversalCostFactor)) + 1
    
    			if overloadId == "cidr_contains_cidr_string" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top