Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 138 for iterated (0.15 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/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: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	s.state.set(mSpanDead)
    	h.freeMSpanLocked(s)
    }
    
    // scavengeAll acquires the heap lock (blocking any additional
    // manipulation of the page allocator) and iterates over the whole
    // heap, scavenging every free page available.
    //
    // Must run on the system stack because it acquires the heap lock.
    //
    //go:systemstack
    func (h *mheap) scavengeAll() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

            //if no start/end dates set, check if an input element...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The Kotlin DSL now respects JSR-305 package annotations.
    +
    This will lead to some types annotated according to JSR-305 being treated as nullable where they were treated as non-nullable before.
    This may lead to compilation errors in the build script. See https://github.com/gradle/kotlin-dsl/releases/tag/v0.17.4[the relevant Kotlin DSL release notes] for details.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      TF_RETURN_IF_ERROR(BackwardsConstAnalysis(
          *graph_, /*compile_time_const_arg_indices=*/nullptr,
          &compile_time_const_nodes, lib_runtime));
      // Iterate over nodes in sorted order so that compiler fuel is deterministic.
      // We can't simply pass op_nodes().begin() and op_nodes().end() to the
      // std::vector constructor because they're not proper iterators, with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	PrimaryGroup *SID
    }
    
    type Tokengroups struct {
    	GroupCount uint32
    	Groups     [1]SIDAndAttributes // Use AllGroups() for iterating.
    }
    
    // AllGroups returns a slice that can be used to iterate over the groups in g.
    func (g *Tokengroups) AllGroups() []SIDAndAttributes {
    	return (*[(1 << 28) - 1]SIDAndAttributes)(unsafe.Pointer(&g.Groups[0]))[:g.GroupCount:g.GroupCount]
    }
    
    type Tokenprivileges struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    When adding `@link:{javadocPath}/org/gradle/api/tasks/Nested.html[Nested]` to an iterable, each element is treated as a separate nested input.
    Each nested input in the iterable is assigned a name, which by default is the dollar sign followed by the index in the iterable, e.g. `$2`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	flags unwindFlags
    }
    
    // init initializes u to start unwinding gp's stack and positions the
    // iterator on gp's innermost frame. gp must not be the current G.
    //
    // A single unwinder can be reused for multiple unwinds.
    func (u *unwinder) init(gp *g, flags unwindFlags) {
    	// Implementation note: This starts the iterator on the first frame and we
    	// provide a "valid" method. Alternatively, this could start in a "before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Futures.java

       * which it is unnecessary to programmatically distinguish between exception types or to extract
       * other information from the exception instance.
       *
       * <p>Exceptions from {@code Future.get} are treated as follows:
       *
       * <ul>
       *   <li>Any {@link ExecutionException} has its <i>cause</i> wrapped in an {@code X} if the cause
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // identify any requested or imported packages that are still missing, and if
    // so, which modules we could add to the module graph in order to make the
    // missing packages available. We add those to the module graph and iterate,
    // until either all packages resolve successfully or we cannot identify any
    // module that would resolve any remaining missing package.
    //
    // If the main module is “tidy” (that is, if "go mod tidy" is a no-op for it)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top