Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 276 for recurse (0.17 sec)

  1. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

          } else {
            Helpers.assertEqualIgnoringOrder(expectedElements, targetElements);
          }
        }
      }
    
      private void recurse(int level) {
        // We're going to reuse the stimuli array 3^steps times by overwriting it
        // in a recursive loop.  Sneaky.
        if (level == stimuli.length) {
          // We've filled the array.
          compareResultsForThisListOfStimuli();
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .build());
            options.addOption(Option.builder(Character.toString(NON_RECURSIVE))
                    .longOpt("non-recursive")
                    .desc(
                            "Do not recurse into sub-projects. When used together with -pl, do not recurse into sub-projects of selected aggregators")
                    .build());
            options.addOption(Option.builder(Character.toString(UPDATE_SNAPSHOTS))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. src/cmd/dist/buildtool.go

    	xmkdirall(base)
    
    	// Copy source code into $GOROOT/pkg/bootstrap and rewrite import paths.
    	writefile("module bootstrap\ngo 1.20\n", pathf("%s/%s", base, "go.mod"), 0)
    	for _, dir := range bootstrapDirs {
    		recurse := strings.HasSuffix(dir, "/...")
    		dir = strings.TrimSuffix(dir, "/...")
    		filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/helpers_test.go

    func allPrimitiveFieldPaths(t *testing.T, skipRecurseList sets.Set[string], tp reflect.Type, path *field.Path) sets.Set[string] {
    	// if the current field path is in the list of paths we should not recurse into,
    	// return here rather than descending and accumulating child field paths
    	if pathStr := path.String(); len(pathStr) > 0 && skipRecurseList.Has(pathStr) {
    		return sets.New[string](pathStr)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_optimize_global_tensors_interprocedural.mlir

      }
    }
    
    // -----
    
    // CHECK-LABEL: module attributes {tf_saved_model.semantics}
    module attributes {tf_saved_model.semantics} {
    
      // Test case: The inter-procedural analysis does not recurse infinitely
    
      // CHECK: "tf_saved_model.global_tensor"() <{
      // CHECK-NOT: is_mutable
      // CHECK-SAME: }> : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/compilability_check_util.h

          const std::vector<StackFrameView>& stack_trace,
          NameAttrList* encapsulating_function,
          UncompilableNodesMap* uncompilable_nodes_map);
    
      // Make sure we don't recurse infinitely on recursive functions.
      const size_t kMaxRecursionDepth = 50;
    
      const OperationFilter op_filter_;
      const DeviceType jit_device_type_;
    };
    
    RecursiveCompilabilityChecker::OperationFilter CreateOperationFilter(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. pkg/config/validation/envoyfilter/envoyfilter.go

    			hasTypedConfig = true
    		}
    		if field.JSONName() == "configDiscovery" && set {
    			hasTypedConfig = true
    		}
    		if set {
    			// If the field was set and is a message, recurse into it to check children
    			m, isMessage := message.Get(field).Interface().(protoreflect.Message)
    			if isMessage {
    				deprecatedTypes = append(deprecatedTypes, recurseMissingTypedConfig(m)...)
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

                            details instanceof $ProgressStartBuildOperationProgressDetails.name
                        ) {
                            // ignore, otherwise we recurse unto death
                        } else {
                            logger.lifecycle "progress \$operationIdentifier"
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. cmd/dependencyverifier/dependencyverifier.go

    		return
    	}
    	for _, to := range references[from] {
    		// switch to the effective version of this dependency
    		if override, ok := effectiveVersions[to.name]; ok {
    			to = override
    		}
    		// recurse unless we've already visited this module in this traversal
    		if !moduleInSlice(to, via, false) {
    			doVisit(visitor, to, via, visited, references, effectiveVersions)
    		}
    	}
    	visited[from] = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. cluster/log-dump/log-dump.sh

          source_file_args=()
          for single_file in "${files[@]}"; do
            source_file_args+=( "${node}:${single_file}" )
          done
          gcloud compute scp --recurse --project "${PROJECT}" --zone "${ZONE}" "${source_file_args[@]}" "${dir}" > /dev/null || true
        elif  [[ "${KUBERNETES_PROVIDER}" == "aws" ]]; then
          local ip
          ip=$(get_ssh_hostname "${node}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top