Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 307 for recurse (0.13 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. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    		fv := dv.Field(i)
    
    		if len(fieldInfo.name) == 0 {
    			// This field is inlined, recurse into fromUnstructured again
    			// with the same set of matched keys.
    			ctx.isInlined = true
    			if err := fromUnstructured(sv, fv, ctx); err != nil {
    				return err
    			}
    			ctx.isInlined = svInlined
    		} else {
    			// This field is not inlined so we recurse into
    			// child field of sv corresponding to field i of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/kubelet/cm/topologymanager/policy.go

    		// Base case: we have looped through all providers and have a full permutation.
    		if i == len(allProviderHints) {
    			callback(accum)
    			return
    		}
    
    		// Loop through all hints for provider 'i', and recurse to build the
    		// permutation of this hint with all hints from providers 'i++'.
    		for j := range allProviderHints[i] {
    			iterate(i+1, append(accum, allProviderHints[i][j]))
    		}
    	}
    	iterate(0, []TopologyHint{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  10. cluster/gce/windows/testonly/install-ssh.psm1

                    "uninstaller before reinstalling")
        powershell.exe `
            -ExecutionPolicy Bypass `
            -File "$OPENSSH_ROOT\OpenSSH-Win64\uninstall-sshd.ps1"
        rm -Force -Recurse $OPENSSH_ROOT\OpenSSH-Win64
      }
    
      # Download open-ssh.
      # Use TLS 1.2: needed for Invoke-WebRequest downloads from github.com.
      [Net.ServicePointManager]::SecurityProtocol = `
          [Net.SecurityProtocolType]::Tls12
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
Back to top