Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 321 for gather (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Other notable changes to be aware of that may break your build include:
    
     * <<#rel5.0:pom_compile_runtime_separation,Separation of compile and runtime dependencies when consuming POMs>>
     * A change that means you should <<#rel4.8:configure_internal_tasks,configure existing `wrapper` and `init` tasks>> rather than defining your own.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Sets.java

      }
    
      /**
       * An unmodifiable view of a set which may be backed by other sets; this view will change as the
       * backing sets do. Contains methods to copy the data into a new set which will then remain
       * stable. There is usually no reason to retain a reference of type {@code SetView}; typically,
       * you either use it as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    		// that all older goroutines also appear in the profile.
    		ready.Add(1)
    		done.Add(1)
    		go func() {
    			defer done.Done()
    			for i := 0; ctx.Err() == nil; i++ {
    				// Use SetGoroutineLabels rather than Do we can always expect an
    				// extra goroutine (this one) with most recent label.
    				SetGoroutineLabels(WithLabels(ctx, Labels(t.Name()+"-loop-i", fmt.Sprint(i))))
    				done.Add(1)
    				go func() {
    					<-ch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    //
    // In this case, the goal is defined as:
    //    (100-reduceExtraPercent) / 100 * memoryLimit
    //
    // We compute both of these goals, and check whether either of them have been met.
    // The background scavenger continues operating as long as either one of the goals
    // has not been met.
    //
    // The goals are updated after each GC.
    //
    // Synchronous scavenging happens for one of two reasons: if an allocation would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Both approaches are acceptable, but you should create and follow a convention to ensure consistency across your build files.
    
    [NOTE]
    ====
    Don't get your `into()` specifications mixed up.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    // 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.
    
    [[verifying-dependencies]]
    = Verifying dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    	// We record the difference by negating j-1 if it is preceded by type S.
    	// Either way, the insertion (into the text[j-1] bucket) is guaranteed to
    	// happen at sa[i´] for some i´ > i, that is, in the portion of sa we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // value of type ToPrint that is an operand of a comparison assertion
    // (e.g. ASSERT_EQ).  OtherOperand is the type of the other operand in
    // the comparison, and is used to help determine the best way to
    // format the value.  In particular, when the value is a C string
    // (char pointer) and the other operand is an STL string object, we
    // want to format the C string as a string, since we know it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Iterators.java

      @SuppressWarnings("unchecked")
      static <T extends @Nullable Object> UnmodifiableListIterator<T> emptyListIterator() {
        return (UnmodifiableListIterator<T>) ArrayItr.EMPTY;
      }
    
      /**
       * This is an enum singleton rather than an anonymous class so ProGuard can figure out it's only
       * referenced by emptyModifiableIterator().
       */
      private enum EmptyModifiableIterator implements Iterator<Object> {
        INSTANCE;
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Iterators.java

      @SuppressWarnings("unchecked")
      static <T extends @Nullable Object> UnmodifiableListIterator<T> emptyListIterator() {
        return (UnmodifiableListIterator<T>) ArrayItr.EMPTY;
      }
    
      /**
       * This is an enum singleton rather than an anonymous class so ProGuard can figure out it's only
       * referenced by emptyModifiableIterator().
       */
      private enum EmptyModifiableIterator implements Iterator<Object> {
        INSTANCE;
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top