Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 711 for recurse (0.16 sec)

  1. operator/pkg/verifier/verifier.go

    		}
    	}
    	r := builder.Flatten().Do()
    	if r.Err() != nil {
    		return 0, 0, 0, r.Err()
    	}
    	visitor := genericclioptions.ResourceFinderForResult(r).Do()
    	// Indirectly RECURSE back into verifyPostInstall with the manifest we just generated
    	generatedCrds, generatedDeployments, generatedDaemonSets, err := v.verifyPostInstall(
    		visitor,
    		fmt.Sprintf("generated from %s", filename))
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. istioctl/pkg/analyze/analyze.go

    	err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
    		if err != nil {
    			return err
    		}
    		// If we encounter a directory, recurse only if the --recursive option
    		// was provided and the directory is not the same as dir.
    		if info.IsDir() {
    			if !recursive && dir != path {
    				return filepath.SkipDir
    			}
    			return nil
    		}
    
    		if !isValidFile(path) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. tests/integration/pilot/analyze_test.go

    			})
    
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    
    			// Recursive is false, so we should only analyze
    			// testdata/some-dir/missing-gateway.yaml and get a
    			// SchemaValidationError (if we did recurse, we'd get a
    			// UnknownAnnotation as well).
    			output, err := istioctlSafe(t, istioCtl, ns.Name(), false, "--recursive=false", dirWithConfig)
    			expectMessages(t, g, output, msg.SchemaValidationError)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

          assert(input_axis < input_indices->size());
          input_indices->operator[](input_axis) = static_cast<uint64_t>(i);
          // Write the value from `input_tensor` if it is the last axis or
          // recurse into the next axis.
          const bool is_last_axis = output_axis == num_dimensions - 1;
          if (is_last_axis) {
            new_values->push_back(
                input_tensor.getValues<Attribute>()[*input_indices]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      Move-Item -Force `
          $tmp_dir\kubernetes\LICENSES ${env:LICENSE_DIR}\LICENSES_kubernetes
    
      # Clean up the temporary directory
      Remove-Item -Force -Recurse $tmp_dir
    }
    
    # Downloads the csi-proxy binaries from kube-env's CSI_PROXY_STORAGE_PATH and
    # CSI_PROXY_VERSION, and then puts them in a subdirectory of $env:NODE_DIR.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// If we aren't allowed to build sets of size 2+N, give up this branch.
    	if b.MaxSet > 0 && 2+len(b.Add) > b.MaxSet {
    		return nil
    	}
    
    	// Adding all matches for 1suffix, recurse to narrow down 0suffix.
    	old := len(b.Add)
    	b.Add = append(b.Add, "1"+suffix)
    	r0 = b.Run("0" + suffix)
    	if r0.Success {
    		// 0suffix + b.Add + 1suffix = suffix + b.Add is what r describes, and it failed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/decompose.go

    		// delete the name for the struct as a whole
    		delete(f.NamedValues, *name)
    	} else {
    		f.NamedValues[*name] = keep
    	}
    
    	// now that this f.NamedValues contains values for the struct
    	// fields, recurse into nested structs
    	for i := 0; i < n; i++ {
    		if name.Type.FieldType(i).IsStruct() {
    			slots = decomposeUserStructInto(f, fnames[i], slots)
    			delete(f.NamedValues, *fnames[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

      public <T extends @Nullable Object> T[] toArray(T[] array) {
        return snapshot().toArray(array);
      }
    
      /*
       * We'd love to use 'new ArrayList(this)' or 'list.addAll(this)', but
       * either of these would recurse back to us again!
       */
      private List<E> snapshot() {
        List<E> list = Lists.newArrayListWithExpectedSize(size());
        for (Multiset.Entry<E> entry : entrySet()) {
          E element = entry.getElement();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

      public <T extends @Nullable Object> T[] toArray(T[] array) {
        return snapshot().toArray(array);
      }
    
      /*
       * We'd love to use 'new ArrayList(this)' or 'list.addAll(this)', but
       * either of these would recurse back to us again!
       */
      private List<E> snapshot() {
        List<E> list = Lists.newArrayListWithExpectedSize(size());
        for (Multiset.Entry<E> entry : entrySet()) {
          E element = entry.getElement();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. pkg/volume/util/atomic_writer.go

    	if err != nil {
    		klog.Errorf("%s: unable to create new temp directory: %v", w.logContext, err)
    		return "", err
    	}
    
    	// 0755 permissions are needed to allow 'group' and 'other' to recurse the
    	// directory tree.  do a chmod here to ensure that permissions are set correctly
    	// regardless of the process' umask.
    	err = os.Chmod(tsDir, 0755)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top