Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 219 for Traverser (0.21 sec)

  1. 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)
  2. apache-maven/src/assembly/shared/init

      if [ ! -x "$JAVACMD" ] ; then
        echo "The java(1) command does not exist in PATH nor is JAVA_HOME set, so Apache Maven cannot be started." >&2
        exit 1
      fi
    fi
    
    # traverses directory structure from process work directory to filesystem root
    # first directory with .mvn subdirectory is considered project base directory
    find_maven_basedir() {
    (
      basedir=`find_file_argument_basedir "$@"`
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 05 22:52:54 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

          if (symref.getValue() != func.getName()) continue;
          op->setAttr(attr.getName(),
                      FlatSymbolRefAttr::get(op->getContext(), cloned.getName()));
          break;
        }
      }
    
      // Traverse results backward so that indices to be deleted stay unchanged.
      for (OpResult result : llvm::reverse(op->getResults())) {
        if (!result.use_empty()) continue;
        int result_idx = result.getResultNumber();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. test/initexp.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // The init cycle diagnosis used to take exponential time
    // to traverse the call graph paths. This test case takes
    // at least two minutes on a modern laptop with the bug
    // and runs in a fraction of a second without it.
    // 10 seconds (-t 10 above) should be plenty if the code is working.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/options.go

    	// TrackUnknownFieldPaths determines whether or not unknown field
    	// paths should be stored or not.
    	TrackUnknownFieldPaths bool
    	// ParentPath builds the path to unknown fields as the object
    	// is recursively traversed.
    	ParentPath []string
    	// UnknownFieldPaths is the list of all unknown fields identified.
    	UnknownFieldPaths []string
    }
    
    // RecordUnknownFields adds a path to an unknown field to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

             * No null keys or values.
             * Never empty.
             */
            @Nullable
            Map<String, byte[]> getInputValueHashesBytes();
    
            /**
             * Traverses the input properties that are file types (e.g. File, FileCollection, FileTree, List of File).
             * <p>
             * If there are no input file properties, visitor will not be called at all.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

         * <p>
         * Execute access grant 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.
         */
        void setExecute(boolean execute);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top