Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 174 for 1029 (0.04 sec)

  1. internal/ringbuffer/ring_buffer_test.go

    	}
    	if rb.Free() != 64 {
    		t.Fatalf("expect free 64 bytes but got %d. r.w=%d, r.r=%d", rb.Free(), rb.w, rb.r)
    	}
    
    	// read empty
    	buf := make([]byte, 1024)
    	n, err := rb.Read(buf)
    	if err == nil {
    		t.Fatalf("expect an error but got nil")
    	}
    	if err != ErrIsEmpty {
    		t.Fatalf("expect ErrIsEmpty but got nil")
    	}
    	if n != 0 {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

            super(config, command);
            this.subCommand = subCommand;
            this.maxDataCount = config.getTransactionBufferSize() - 512;
            this.maxParameterCount = 1024;
            this.primarySetupOffset = PRIMARY_SETUP_OFFSET;
            this.secondaryParameterOffset = SECONDARY_PARAMETER_OFFSET;
        }
    
    
        /**
         * @param maxBufferSize
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

        public static final int ACB_DOMTRUST = 64;
        public static final int ACB_WSTRUST = 128;
        public static final int ACB_SVRTRUST = 256;
        public static final int ACB_PWNOEXP = 512;
        public static final int ACB_AUTOLOCK = 1024;
        public static final int ACB_ENC_TXT_PWD_ALLOWED = 2048;
        public static final int ACB_SMARTCARD_REQUIRED = 4096;
        public static final int ACB_TRUSTED_FOR_DELEGATION = 8192;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 14K bytes
    - Viewed (0)
  4. kotlin-js-store/yarn.lock

      integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
      dependencies:
        minimist "^1.2.6"
    
    mocha@10.2.0:
      version "10.2.0"
      resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.2.0.tgz#1fd4a7c32ba5ac372e03a17eef435bd00e5c68b8"
      integrity sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==
      dependencies:
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_1x.md

       Use `X-Android-Transports` to write the preferred transports and
       `X-Android-Selected-Transport` to read the negotiated transport.
    
    
    ## Version 1.0.2
    
    _2013-05-11_
    
     * Fix: Remove use of Java 6-only APIs.
     * Fix: Properly handle exceptions from `NetworkInterface` when querying MTU.
     * Fix: Ensure MTU has a reasonable default and upper-bound.
    
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const RTF_HOST = 4
    pkg syscall (freebsd-arm64), const RTF_HOST ideal-int
    pkg syscall (freebsd-arm64), const RTF_LLDATA = 1024
    pkg syscall (freebsd-arm64), const RTF_LLDATA ideal-int
    pkg syscall (freebsd-arm64), const RTF_LLINFO = 1024
    pkg syscall (freebsd-arm64), const RTF_LLINFO ideal-int
    pkg syscall (freebsd-arm64), const RTF_LOCAL = 2097152
    pkg syscall (freebsd-arm64), const RTF_LOCAL ideal-int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

            try {
                final InputStream is = request.getInputStream();
                try {
                    final byte[] buf = new byte[1024];
                    while ((is.read(buf)) != -1) {}
                } catch (final Exception ignored) {} finally {
                    try {
                        is.close();
                    } catch (final Exception ignored) {}
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Oct 23 13:27:21 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/samr.java

        public static final int ACB_DOMTRUST = 64;
        public static final int ACB_WSTRUST = 128;
        public static final int ACB_SVRTRUST = 256;
        public static final int ACB_PWNOEXP = 512;
        public static final int ACB_AUTOLOCK = 1024;
        public static final int ACB_ENC_TXT_PWD_ALLOWED = 2048;
        public static final int ACB_SMARTCARD_REQUIRED = 4096;
        public static final int ACB_TRUSTED_FOR_DELEGATION = 8192;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 15.1K bytes
    - Viewed (0)
  9. internal/s3select/jstream/decoder.go

    // If emitDepth is < 0, values at every depth will be emitted.
    func NewDecoder(r io.Reader, emitDepth int) *Decoder {
    	d := &Decoder{
    		scanner:   newScanner(r),
    		emitDepth: emitDepth,
    		scratch:   &scratch{data: make([]byte, 1024)},
    		metaCh:    make(chan *MetaValue, 128),
    	}
    	if emitDepth < 0 {
    		d.emitDepth = 0
    		d.emitRecursive = true
    	}
    	return d
    }
    
    // ObjectAsKVS - by default JSON returns map[string]interface{} this
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.10.md

        - [Client Binaries](#client-binaries-3)
        - [Server Binaries](#server-binaries-3)
        - [Node Binaries](#node-binaries-3)
      - [Changelog since v1.10.9](#changelog-since-v1109)
        - [Other notable changes](#other-notable-changes-3)
    - [v1.10.9](#v1109)
      - [Downloads for v1.10.9](#downloads-for-v1109)
        - [Client Binaries](#client-binaries-4)
        - [Server Binaries](#server-binaries-4)
        - [Node Binaries](#node-binaries-4)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top