Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 178 for 8192 (0.18 sec)

  1. 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.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: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 14K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

                            }
                        }
                    }
    
                    static void copy(InputStream source, OutputStream target) throws IOException {
                        byte[] buf = new byte[8192]
                        int length
                        while ((length = source.read(buf)) > 0) {
                            target.write(buf, 0, length)
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. 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: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 15.1K bytes
    - Viewed (0)
  6. 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  7. src/crypto/md5/md5_test.go

    func BenchmarkHash512(b *testing.B) {
    	benchmarkSize(b, 512, false)
    }
    
    func BenchmarkHash1K(b *testing.B) {
    	benchmarkSize(b, 1024, false)
    }
    
    func BenchmarkHash8K(b *testing.B) {
    	benchmarkSize(b, 8192, false)
    }
    
    func BenchmarkHash1M(b *testing.B) {
    	benchmarkSize(b, 1024*1024, false)
    }
    
    func BenchmarkHash8M(b *testing.B) {
    	benchmarkSize(b, 8*1024*1024, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  8. 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  9. misc/ios/go_ios_exec.go

    	if not lldb.SBProcess.EventIsProcessEvent(event):
    		continue
    	if running:
    		# Pass through stdout and stderr.
    		while True:
    			out = process.GetSTDOUT(8192)
    			if not out:
    				break
    			sys.stdout.write(out)
    		while True:
    			out = process.GetSTDERR(8192)
    			if not out:
    				break
    			sys.stderr.write(out)
    	state = process.GetStateFromEvent(event)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  10. src/cmd/internal/notsha256/sha256_test.go

    		h.Reset()
    		h.Write(in)
    		out = h.Sum(out[:0])
    	}))
    	if n > 0 {
    		t.Errorf("allocs = %d, want 0", n)
    	}
    }
    
    var bench = New()
    var buf = make([]byte, 8192)
    
    func benchmarkSize(b *testing.B, size int) {
    	sum := make([]byte, bench.Size())
    	b.Run("New", func(b *testing.B) {
    		b.ReportAllocs()
    		b.SetBytes(int64(size))
    		for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:17 UTC 2022
    - 16.2K bytes
    - Viewed (0)
Back to top