Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BFS (0.16 sec)

  1. internal/disk/stat_linux.go

    	}
    	info.Used = info.Total - info.Free
    
    	if firstTime {
    		bfs, err := blockdevice.NewDefaultFS()
    		if err == nil {
    			devName := ""
    			diskstats, _ := bfs.ProcDiskstats()
    			for _, dstat := range diskstats {
    				// ignore all loop devices
    				if strings.HasPrefix(dstat.DeviceName, "loop") {
    					continue
    				}
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

    import org.jetbrains.kotlin.name.StandardClassIds
    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.types.TypeApproximatorConfiguration
    import org.jetbrains.kotlin.types.model.CaptureStatus
    import org.jetbrains.kotlin.util.bfs
    import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
    import org.jetbrains.kotlin.utils.exceptions.withPsiEntry
    
    internal class KtFirTypeProvider(
        override val analysisSession: KtFirAnalysisSession,
    Plain Text
    - Registered: Fri Apr 05 08:18:09 GMT 2024
    - Last Modified: Tue Feb 20 08:50:04 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/Traverser.java

         * nodes. The traversal order among descendant nodes (particularly aunts and nieces) are
         * determined by the {@code InsertionOrder} parameter: nieces are placed at the FRONT before
         * aunts for pre-order; while in BFS they are placed at the BACK after aunts.
         */
        private Iterator<N> topDown(Iterator<? extends N> startNodes, InsertionOrder order) {
          Deque<Iterator<? extends N>> horizon = new ArrayDeque<>();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue May 30 20:12:45 GMT 2023
    - 19.8K bytes
    - Viewed (0)
  4. istioctl/cmd/root.go

    	}))
    
    	validateCmd := validate.NewValidateCommand(ctx)
    	hideInheritedFlags(validateCmd, "kubeconfig")
    	rootCmd.AddCommand(validateCmd)
    
    	rootCmd.AddCommand(optionsCommand(rootCmd))
    
    	// BFS applies the flag error function to all subcommands
    	seenCommands := make(map[*cobra.Command]bool)
    	var commandStack []*cobra.Command
    
    	commandStack = append(commandStack, rootCmd)
    
    	for len(commandStack) > 0 {
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Thu Apr 11 20:51:30 GMT 2024
    - 10K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///   * Must set `status` to `TF_FAILED_PRECONDITION` if `path` is invalid.
      ///   * Might use any other error value for `status` to signal other errors.
      ///
      /// DEFAULT IMPLEMENTATION: Does a BFS traversal of tree rooted at `path`,
      /// deleting entries as needed. Needs `path_exists`, `get_children`,
      /// `is_directory`, `delete_file`, and `delete_dir`.
    C
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
Back to top