Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 711 for recurse (0.14 sec)

  1. cmd/os_unix.go

    	if err != nil {
    		return consumed, nil, typ, err
    	}
    
    	return consumed, nameBuf[:nameLen], typ, nil
    }
    
    // readDirFn applies the fn() function on each entries at dirPath, doesn't recurse into
    // the directory itself, if the dirPath doesn't exist this function doesn't return
    // an error.
    func readDirFn(dirPath string, fn func(name string, typ os.FileMode) error) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    // similar to ast.Inspect except it does not call f(nil).
    func WalkASTWithParent(n ast.Node, f func(n ast.Node, parent ast.Node) bool) {
    	var ancestors []ast.Node
    	ast.Inspect(n, func(n ast.Node) (recurse bool) {
    		if n == nil {
    			ancestors = ancestors[:len(ancestors)-1]
    			return false
    		}
    
    		var parent ast.Node
    		if len(ancestors) > 0 {
    			parent = ancestors[len(ancestors)-1]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top