Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 220 for Primitives (0.09 sec)

  1. android/guava/src/com/google/common/hash/PrimitiveSink.java

    import com.google.common.annotations.Beta;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.nio.ByteBuffer;
    import java.nio.charset.Charset;
    
    /**
     * An object which can receive a stream of primitive values.
     *
     * @author Kevin Bourrillion
     * @since 12.0 (in 11.0 as {@code Sink})
     */
    @Beta
    public interface PrimitiveSink {
      /**
       * Puts a byte into this sink.
       *
       * @param b a byte
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/Stats.java

     *
     * <ul>
     *   <li>If all the values you want to summarize are already known, use the appropriate {@code
     *       Stats.of} factory method below. Primitive arrays, iterables and iterators of any kind of
     *       {@code Number}, and primitive varargs are supported.
     *   <li>Or, to avoid storing up all the data first, create a {@link StatsAccumulator} instance,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/first-steps.md

    <img src="/img/tutorial/security/image03.png">
    
    We are not verifying the validity of the token yet, but that's a start already.
    
    ## Recap { #recap }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

    import jcifs.smb1.util.Encdec;
    
    /**
     * This class provides random access to files stored on an SMB/CIFS network resource.
     * It implements the DataInput and DataOutput interfaces for reading and writing primitive
     * Java data types to the file.
     */
    public class SmbRandomAccessFile implements DataOutput, DataInput {
    
        private static final int WRITE_OPTIONS = 0x0842;
    
        private final SmbFile file;
        private long fp;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

    import java.util.HashMap;
    
    import jcifs.smb1.util.Encdec;
    
    /**
     * NDR (Network Data Representation) buffer for encoding and decoding DCE/RPC messages.
     * This class provides methods for reading and writing primitive types and strings
     * in NDR format for DCE/RPC communication.
     */
    public class NdrBuffer {
        int referent;
        HashMap referents;
    
        static class Entry {
            int referent;
            Object obj;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    the efficient and reliable management of multiple Kubernetes clusters,
    and applications that run in and across multiple clusters.
    
    For the 1.8 release, SIG Multicluster focussed on expanding the set of
    Kubernetes primitives that our Cluster Federation control plane
    supports, expanding the number of approaches taken to multi-cluster
    management (beyond our initial Federation approach), and preparing
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/security/first-steps.md

    Wir überprüfen im Moment noch nicht die Gültigkeit des Tokens, aber das ist bereits ein Anfang.
    
    ## Zusammenfassung
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/ArrayUtil.java

                }
            }
            return true;
        }
    
        /**
         * Converts an array to an object array ({@literal Object[]}).
         * <p>
         * The source array can be a primitive array. In that case, the resulting array will contain the corresponding wrapper types.
         * </p>
         *
         * @param array
         *            the array
         * @return the object array
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 41.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

    import jcifs.util.Encdec;
    import jcifs.util.Strings;
    
    /**
     * NDR (Network Data Representation) buffer for encoding and decoding DCE/RPC messages.
     * This class provides methods for reading and writing primitive types and strings
     * in NDR format for DCE/RPC communication.
     */
    public class NdrBuffer {
    
        private int referent;
        private Map<Object, Entry> referents;
    
        private static class Entry {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertEquals(10000, heartbeatInterval.intValue());
    
            // Test integer conversion for cleanup days
            int cleanupDays = fessConfig.getDayForCleanup();
            // cleanupDays is primitive int, not Integer
            assertEquals(3, cleanupDays);
    
            // Test integer conversion for crawler processes
            Integer crawlerProcesses = fessConfig.getJobMaxCrawlerProcessesAsInteger();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
Back to top