Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 138 for iterated (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        public Set<File> resolve() {
            warnOnDeprecatedUsage("resolve()", ProperMethodUsage.RESOLVABLE);
            return getFiles();
        }
    
        @Override
        public Iterator<File> iterator() {
            return getIntrinsicFiles().iterator();
        }
    
        @Override
        protected void visitContents(FileCollectionStructureVisitor visitor) {
            getIntrinsicFiles().visitStructure(visitor);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <li>A {@link File}. If the file is an absolute file, it is returned as is. Otherwise, the file's path is
         * interpreted relative to the project directory.</li>
         *
         * <li>A {@link java.nio.file.Path}. The path must be associated with the default provider and is treated the
         * same way as an instance of {@code File}.</li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                }
            }
    
            // We need to locate the top level project which may be pointed at using
            // the -f/--file option.  However, the command line isn't parsed yet, so
            // we need to iterate through the args to find it and act upon it.
            Path topDirectory = Paths.get(cliRequest.workingDirectory);
            boolean isAltFile = false;
            for (String arg : cliRequest.args) {
                if (isAltFile) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            importIds.add(importing);
    
            List<DependencyManagement> importMgmts = null;
    
            List<Dependency> deps = new ArrayList<>(depMgmt.getDependencies());
            for (Iterator<Dependency> it = deps.iterator(); it.hasNext(); ) {
                Dependency dependency = it.next();
    
                if (!("pom".equals(dependency.getType()) && "import".equals(dependency.getScope()))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // store to each resource. Non-existent entry indicates that a resource has
      // not been stored to yet.
      llvm::SmallDenseMap<Value, TF::AssignVariableOp>
          resource_handle_to_last_store_op;
    
      // Only iterate through ops directly in the block as we can't handle ops
      // nested deeper in regions.
      for (Operation& op : llvm::make_early_inc_range(*block)) {
        if (auto read_variable_op = dyn_cast<TF::ReadVariableOp>(&op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	varSlots [][]SlotID
    	lists    [][]byte
    
    	// The user variable that each slot rolls up to, indexed by SlotID.
    	slotVars []VarID
    
    	f             *Func
    	loggingLevel  int
    	convergeCount int // testing; iterate over block debug state this many times
    	registers     []Register
    	stackOffset   func(LocalSlot) int32
    	ctxt          *obj.Link
    
    	// The names (slots) associated with each value, indexed by Value ID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            };
            final Supplier<InputLocation> locationSupplier = () -> {
                if (stk.size() < 2) {
                    return null;
                }
                Iterator<ActivationFrame> f = stk.iterator();
    
                String location = f.next().location;
                ActivationFrame parent = f.next();
    
                return parent.parent.map(p -> p.getLocation(location)).orElse(null);
            };
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if event.Type == watch.Bookmark {
    		c.startDispatchingBookmarkEventsLocked()
    		// return here to reduce following code indentation and diff
    		return
    	}
    
    	// iterate over watchers for each applicable namespace/name tuple
    	namespace := event.ObjFields["metadata.namespace"]
    	name := event.ObjFields["metadata.name"]
    	if len(namespace) > 0 {
    		if len(name) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            "x-kubernetes-list-type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            importIds.add(importing);
    
            List<org.apache.maven.api.model.DependencyManagement> importMgmts = null;
    
            for (Iterator<Dependency> it = depMgmt.getDependencies().iterator(); it.hasNext(); ) {
                Dependency dependency = it.next();
    
                if (!("pom".equals(dependency.getType()) && "import".equals(dependency.getScope()))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top