Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for 8192 (0.1 sec)

  1. doc/godebug.md

    Go 1.22 adds a configurable limit to control the maximum acceptable RSA key size
    that can be used in TLS handshakes, controlled by the [`tlsmaxrsasize` setting](/pkg/crypto/tls#Conn.Handshake).
    The default is tlsmaxrsasize=8192, limiting RSA to 8192-bit keys. To avoid
    denial of service attacks, this setting and default was backported to Go
    1.19.13, Go 1.20.8, and Go 1.21.1.
    
    Go 1.22 made it an error for a request or response read by a net/http
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Oct 28 14:46:33 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VADDPD 4096(DX)(AX*2), Y29, Y1  // 62f19520588c4200100000
    	VADDPD 8192(DX), Z0, Z29        // 6261fd4858aa00200000
    	VADDPD 8192(DX), Z29, Z1        // 62f19540588a00200000
    	VADDPD 8192(DX), Z28, Z29       // 62619d4058aa00200000
    	VADDPD 8192(DX)(AX*2), Z0, Z29  // 6261fd4858ac4200200000
    	VADDPD 8192(DX)(AX*2), Z29, Z1  // 62f19540588c4200200000
    	// EVEX: Y registers; VL=256.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

        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;
        public static final int ACB_NOT_DELEGATED = 16384;
        public static final int ACB_USE_DES_KEY_ONLY = 32768;
        public static final int ACB_DONT_REQUIRE_PREAUTH = 65536;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 14K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (darwin-386), const EV_ERROR = 16384
    pkg syscall (darwin-386), const EV_FLAG0 = 4096
    pkg syscall (darwin-386), const EV_FLAG1 = 8192
    pkg syscall (darwin-386), const EV_ONESHOT = 16
    pkg syscall (darwin-386), const EV_OOBAND = 8192
    pkg syscall (darwin-386), const EV_POLL = 4096
    pkg syscall (darwin-386), const EV_RECEIPT = 64
    pkg syscall (darwin-386), const EV_SYSFLAGS = 61440
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  5. api/go1.3.txt

    pkg syscall (netbsd-386), const CLONE_FS ideal-int
    pkg syscall (netbsd-386), const CLONE_PID = 4096
    pkg syscall (netbsd-386), const CLONE_PID ideal-int
    pkg syscall (netbsd-386), const CLONE_PTRACE = 8192
    pkg syscall (netbsd-386), const CLONE_PTRACE ideal-int
    pkg syscall (netbsd-386), const CLONE_SIGHAND = 2048
    pkg syscall (netbsd-386), const CLONE_SIGHAND ideal-int
    pkg syscall (netbsd-386), const CLONE_VFORK = 16384
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/samr.java

        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;
        public static final int ACB_NOT_DELEGATED = 16384;
        public static final int ACB_USE_DES_KEY_ONLY = 32768;
        public static final int ACB_DONT_REQUIRE_PREAUTH = 65536;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 15.1K bytes
    - Viewed (0)
  7. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

     *
     * @author Jason van Zyl
     */
    public class PluginDescriptorBuilder {
    
        public static final String PLUGIN_2_0_0 = "http://maven.apache.org/PLUGIN/2.0.0";
        private static final int BUFFER_SIZE = 8192;
    
        public interface StreamSupplier {
            InputStream open() throws IOException;
        }
    
        public interface ReaderSupplier {
            Reader open() throws IOException;
        }
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/CharSource.java

          }
          return super.asCharSource(charset);
        }
    
        @Override
        public InputStream openStream() throws IOException {
          return new ReaderInputStream(CharSource.this.openStream(), charset, 8192);
        }
    
        @Override
        public String toString() {
          return CharSource.this.toString() + ".asByteSource(" + charset + ")";
        }
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NetworkExplorer.java

            }
        }
    
    
        protected void doFile ( HttpServletRequest req, HttpServletResponse resp, SmbFile file ) throws IOException {
            byte[] buf = new byte[8192];
    
            @SuppressWarnings ( "resource" )
            ServletOutputStream out = resp.getOutputStream();
            String url;
            int n;
            try ( SmbFileInputStream in = new SmbFileInputStream(file) ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                }
            }
        }
    
        protected void doFile( HttpServletRequest req,
                    HttpServletResponse resp, SmbFile file ) throws IOException {
            byte[] buf = new byte[8192];
            String url, type;
            int n;
    
            try (SmbFileInputStream in = new SmbFileInputStream(file);
                    ServletOutputStream out = resp.getOutputStream()) {
                url = file.getPath();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
Back to top