Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for Characteristics (0.27 sec)

  1. guava/src/com/google/common/collect/CollectSpliterators.java

          }
    
          @Override
          public long estimateSize() {
            return fromSpliterator.estimateSize();
          }
    
          @Override
          public int characteristics() {
            return fromSpliterator.characteristics()
                & ~(Spliterator.DISTINCT | Spliterator.NONNULL | Spliterator.SORTED);
          }
        };
      }
    
      /** Returns a {@code Spliterator} filtered by the specified predicate. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Streams.java

          splitrsBuilder.add(splitr);
          characteristics &= splitr.characteristics();
          estimatedSize = LongMath.saturatedAdd(estimatedSize, splitr.estimateSize());
        }
        return StreamSupport.stream(
                CollectSpliterators.flatMap(
                    splitrsBuilder.build().spliterator(),
                    splitr -> (Spliterator<T>) splitr,
                    characteristics,
                    estimatedSize),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

        abstract boolean tryAdvance(Consumer<? super E> action);
    
        abstract @Nullable GeneralSpliterator<E> trySplit();
    
        final int characteristics() {
          return spliterator.characteristics();
        }
    
        final long estimateSize() {
          return spliterator.estimateSize();
        }
    
        final Comparator<? super E> getComparator() {
          return spliterator.getComparator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/pe.go

    	if ctxt.LinkMode != LinkExternal {
    		fh.Characteristics = pe.IMAGE_FILE_EXECUTABLE_IMAGE
    		switch ctxt.Arch.Family {
    		case sys.AMD64, sys.I386:
    			if ctxt.BuildMode != BuildModePIE {
    				fh.Characteristics |= pe.IMAGE_FILE_RELOCS_STRIPPED
    			}
    		}
    	}
    	if pe64 != 0 {
    		var oh64 pe.OptionalHeader64
    		fh.SizeOfOptionalHeader = uint16(binary.Size(&oh64))
    		fh.Characteristics |= pe.IMAGE_FILE_LARGE_ADDRESS_AWARE
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/CollectCollectors.java

        return Collector.of(
            EnumSetAccumulator::new,
            EnumSetAccumulator::add,
            EnumSetAccumulator::combine,
            EnumSetAccumulator::toImmutableSet,
            Collector.Characteristics.UNORDERED);
      }
    
      @IgnoreJRERequirement // see enclosing class (whose annotation Animal Sniffer ignores here...)
      private static final class EnumSetAccumulator<E extends Enum<E>> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:21:40 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CollectCollectors.java

        return Collector.of(
            EnumSetAccumulator::new,
            EnumSetAccumulator::add,
            EnumSetAccumulator::combine,
            EnumSetAccumulator::toImmutableSet,
            Collector.Characteristics.UNORDERED);
      }
    
      private static final class EnumSetAccumulator<E extends Enum<E>> {
        @SuppressWarnings({"rawtypes", "unchecked"})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:21:40 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadpe/ldpe.go

    	var ls Symbols
    
    	// TODO return error if found .cormeta
    
    	// create symbols for mapped sections
    	for _, sect := range f.Sections {
    		if sect.Characteristics&pe.IMAGE_SCN_MEM_DISCARDABLE != 0 {
    			continue
    		}
    
    		if sect.Characteristics&(pe.IMAGE_SCN_CNT_CODE|pe.IMAGE_SCN_CNT_INITIALIZED_DATA|pe.IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0 {
    			// This has been seen for .idata sections, which we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/hash/HashTestUtils.java

          }
        }
      }
    
      /**
       * Test for 2-bit characteristics. A characteristic is a delta in the input which is repeated in
       * the output. For example, if f() is a block cipher and c is a characteristic, then f(x^c) =
       * f(x)^c with greater than expected probability. The test for funneling is merely a test for
       * 1-bit characteristics.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  9. src/debug/pe/file.go

    			PointerToRelocations: sh.PointerToRelocations,
    			PointerToLineNumbers: sh.PointerToLineNumbers,
    			NumberOfRelocations:  sh.NumberOfRelocations,
    			NumberOfLineNumbers:  sh.NumberOfLineNumbers,
    			Characteristics:      sh.Characteristics,
    		}
    		r2 := r
    		if sh.PointerToRawData == 0 { // .bss must have all 0s
    			r2 = &nobitsSectionReader{}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. src/syscall/types_linux.go

    // backwards compatibility. Copied from /usr/include/bits/ustat.h
    struct ustat {
    	__daddr_t f_tfree;
    	__ino_t f_tinode;
    	char f_fname[6];
    	char f_fpack[6];
    };
    
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    	sizeofInt      = C.sizeof_int
    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top