Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for Characteristics (0.28 sec)

  1. JavadocStyleGuide.md

    | 10 | `@implNote`   | Adds a “Implementation Note” heading                                           | This section contains informative notes about the implementation, such as advice to implementors, or performance characteristics that are specific to the implementation in this class of this version of the JDK  |
    
    ## 1.2 The summary fragment
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Comparators.java

        return Collector.of(
            () -> TopKSelector.<T>least(k, comparator),
            TopKSelector::offer,
            TopKSelector::combine,
            TopKSelector::topK,
            Collector.Characteristics.UNORDERED);
      }
    
      /**
       * Returns a {@code Collector} that returns the {@code k} greatest (relative to the specified
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 08:42:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/BloomFilter.java

            BloomFilter::put,
            (bf1, bf2) -> {
              bf1.putAll(bf2);
              return bf1;
            },
            Collector.Characteristics.UNORDERED,
            Collector.Characteristics.CONCURRENT);
      }
    
      /**
       * Creates a {@link BloomFilter} with the expected number of insertions and expected false
       * positive probability.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         * <p>
         * When using the “Gradle Daemon”, this may not be the same Gradle distribution that the build was started with.
         * If an existing daemon process is running that is deemed compatible (e.g. has the desired JVM characteristics)
         * then this daemon may be used instead of starting a new process and it may have been started from a different “gradle home”.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/internal/coverage/defs.go

    // complicated.
    type FuncDesc struct {
    	Funcname string
    	Srcfile  string
    	Units    []CoverableUnit
    	Lit      bool // true if this is a function literal
    }
    
    // CoverableUnit describes the source characteristics of a single
    // program unit for which we want to gather coverage info. Coverable
    // units are either "simple" or "intraline"; a "simple" coverable unit
    // corresponds to a basic block (region of straight-line code with no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/debug/buildinfo/buildinfo.go

    		IMAGE_SCN_LNK_NRELOC_OVFL        = 0x1000000
    		IMAGE_SCN_ALIGN_32BYTES          = 0x600000
    	)
    	for _, sect := range x.f.Sections {
    		if sect.VirtualAddress != 0 && sect.Size != 0 &&
    			sect.Characteristics&^IMAGE_SCN_ALIGN_32BYTES == IMAGE_SCN_CNT_INITIALIZED_DATA|IMAGE_SCN_MEM_READ|IMAGE_SCN_MEM_WRITE {
    			return uint64(sect.VirtualAddress) + x.imageBase(), uint64(sect.VirtualSize)
    		}
    	}
    	return 0, 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/Stats.java

            StatsAccumulator::new,
            (a, x) -> a.add(x.doubleValue()),
            (l, r) -> {
              l.addAll(r);
              return l;
            },
            StatsAccumulator::snapshot,
            Collector.Characteristics.UNORDERED);
      }
    
      /** Returns the number of values. */
      public long count() {
        return count;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/fsys/fsys.go

    	}
    }
    
    // fakeFile provides an fs.FileInfo implementation for an overlaid file,
    // so that the file has the name of the overlaid file, but takes all
    // other characteristics of the replacement file.
    type fakeFile struct {
    	name string
    	real fs.FileInfo
    }
    
    func (f fakeFile) Name() string       { return f.name }
    func (f fakeFile) Size() int64        { return f.real.Size() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multisets.java

        return CollectSpliterators.flatMap(
            entrySpliterator,
            entry -> Collections.nCopies(entry.getCount(), entry.getElement()).spliterator(),
            Spliterator.SIZED
                | (entrySpliterator.characteristics()
                    & (Spliterator.ORDERED | Spliterator.NONNULL | Spliterator.IMMUTABLE)),
            multiset.size());
      }
    
      /** An implementation of {@link Multiset#size}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Lists.java

      }
    
      /**
       * Implementation of a transforming random access list. We try to make as many of these methods
       * pass-through to the source list as possible so that the performance characteristics of the
       * source list and transformed list are similar.
       *
       * @see Lists#transform
       */
      private static class TransformingRandomAccessList<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top