Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 198 for Traverser (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    				f(ev.node, false, stack)
    			}
    			stack = stack[:len(stack)-1]
    		}
    		i++
    	}
    }
    
    // traverse builds the table of events representing a traversal.
    func traverse(files []*ast.File) []event {
    	// Preallocate approximate number of events
    	// based on source file extent.
    	// This makes traverse faster by 4x (!).
    	var extent int
    	for _, f := range files {
    		extent += int(f.End() - f.Pos())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

     *     <li>EXECUTE access: the capability to run a file as a program; executing a directory doesn't really make sense, it's more like
     *     a traverse permission; for example, a user must have 'execute' access to the 'bin' directory in order to execute the 'ls' or 'cd' commands.</li>
     * </ul>
     *
     * @since 8.3
     */
    public interface UserClassFilePermissions {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/meta.go

    }
    
    type PatchMetaFromOpenAPIV3 struct {
    	// SchemaList is required to resolve OpenAPI V3 references
    	SchemaList map[string]*spec.Schema
    	Schema     *spec.Schema
    }
    
    func (s PatchMetaFromOpenAPIV3) traverse(key string) (PatchMetaFromOpenAPIV3, error) {
    	if s.Schema == nil {
    		return PatchMetaFromOpenAPIV3{}, nil
    	}
    	if len(s.Schema.Properties) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher.go

    	if err != nil {
    		return fmt.Errorf("failed to start plugin fsWatcher, err: %v", err)
    	}
    	w.fsWatcher = fsWatcher
    
    	// Traverse plugin dir and add filesystem watchers before starting the plugin processing goroutine.
    	if err := w.traversePluginDir(w.path); err != nil {
    		klog.ErrorS(err, "Failed to traverse plugin socket path", "path", w.path)
    	}
    
    	go func(fsWatcher *fsnotify.Watcher) {
    		for {
    			select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. cmd/admin-heal-ops.go

    	// release lock
    	h.mutex.Unlock()
    
    	return nil
    }
    
    // healSequenceStart - this is the top-level background heal
    // routine. It launches another go-routine that actually traverses
    // on-disk data, checks and heals according to the selected
    // settings. This go-routine itself, (1) monitors the traversal
    // routine for completion, and (2) listens for external stop
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

    // only be used as the shape-determining operand; it will not replace other
    // usages of the original constant. If the operands are not constants (i.e.
    // results of some other computation), then the pass recursively traverses the
    // call tree upwards and duplicates all constants found in the subtree in a
    // similar manner.
    //
    // This pass may be used to avoid placing shape-determining constants in the CPU
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/HasFinalizers.java

                            queue.addAll(((HasFinalizers) node.getGroup()).getFinalizerGroups());
                        }
                    }
                }
                // Else, have already traversed this group
            }
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 16 22:19:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/argument.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kubeadm
    
    // GetArgValue traverses an argument slice backwards and returns the value
    // of the given argument name and the index where it was found.
    // If the argument does not exist an empty string and -1 are returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/layout.go

    		// sort advances in depth. Take the following cfg as an example, regardless of other factors.
    		//           b1
    		//         0/ \1
    		//        b2   b3
    		// Traverse b.Succs in order, the right child node b3 will be scheduled immediately after
    		// b1, traverse b.Succs in reverse order, the left child node b2 will be scheduled
    		// immediately after b1. The test results show that reverse traversal performs a little
    		// better.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/walk.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements syntax tree walking.
    
    package syntax
    
    import "fmt"
    
    // Inspect traverses an AST in pre-order: it starts by calling f(root);
    // root must not be nil. If f returns true, Inspect invokes f recursively
    // for each of the non-nil children of root, followed by a call of f(nil).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top