Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for alocale (1.16 sec)

  1. src/syscall/zerrors_netbsd_arm.go

    	6:  "device not configured",
    	7:  "argument list too long",
    	8:  "exec format error",
    	9:  "bad file descriptor",
    	10: "no child processes",
    	11: "resource deadlock avoided",
    	12: "cannot allocate memory",
    	13: "permission denied",
    	14: "bad address",
    	15: "block device required",
    	16: "device busy",
    	17: "file exists",
    	18: "cross-device link",
    	19: "operation not supported by device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 66.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/CopyUtil.java

         */
        protected static int copyInternal(final FileInputStream in, final OutputStream out) {
            try {
                final FileChannel channel = in.getChannel();
                final ByteBuffer buffer = ByteBuffer.allocate(DEFAULT_BUF_SIZE);
                final byte[] buf = buffer.array();
                int len;
                int amount = 0;
                while ((len = ChannelUtil.read(channel, buffer, amount)) != -1) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_arm.go

    	6:   "no such device or address",
    	7:   "argument list too long",
    	8:   "exec format error",
    	9:   "bad file descriptor",
    	10:  "no child processes",
    	11:  "resource temporarily unavailable",
    	12:  "cannot allocate memory",
    	13:  "permission denied",
    	14:  "bad address",
    	15:  "block device required",
    	16:  "device or resource busy",
    	17:  "file exists",
    	18:  "invalid cross-device link",
    	19:  "no such device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.9K bytes
    - Viewed (0)
  4. src/syscall/zerrors_openbsd_ppc64.go

    	6:  "device not configured",
    	7:  "argument list too long",
    	8:  "exec format error",
    	9:  "bad file descriptor",
    	10: "no child processes",
    	11: "resource deadlock avoided",
    	12: "cannot allocate memory",
    	13: "permission denied",
    	14: "bad address",
    	15: "block device required",
    	16: "device busy",
    	17: "file exists",
    	18: "cross-device link",
    	19: "operation not supported by device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  5. src/syscall/zerrors_openbsd_riscv64.go

    	6:  "device not configured",
    	7:  "argument list too long",
    	8:  "exec format error",
    	9:  "bad file descriptor",
    	10: "no child processes",
    	11: "resource deadlock avoided",
    	12: "cannot allocate memory",
    	13: "permission denied",
    	14: "bad address",
    	15: "block device required",
    	16: "device busy",
    	17: "file exists",
    	18: "cross-device link",
    	19: "operation not supported by device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	var cloReg int16
    
    	extraForCloCtx := 0
    	if needCloCtx {
    		extraForCloCtx = 1
    	}
    
    	// Allocate location lists.
    	rval.LocationLists = make([][]byte, numRegParams+extraForCloCtx)
    
    	// Locate the value corresponding to the last spill of
    	// an input register.
    	afterPrologVal, cloRegStore := locatePrologEnd(f, needCloCtx)
    
    	if needCloCtx {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/syscall/zerrors_freebsd_386.go

    	6:  "device not configured",
    	7:  "argument list too long",
    	8:  "exec format error",
    	9:  "bad file descriptor",
    	10: "no child processes",
    	11: "resource deadlock avoided",
    	12: "cannot allocate memory",
    	13: "permission denied",
    	14: "bad address",
    	15: "block device required",
    	16: "device busy",
    	17: "file exists",
    	18: "cross-device link",
    	19: "operation not supported by device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
  8. src/syscall/zerrors_freebsd_amd64.go

    	6:  "device not configured",
    	7:  "argument list too long",
    	8:  "exec format error",
    	9:  "bad file descriptor",
    	10: "no child processes",
    	11: "resource deadlock avoided",
    	12: "cannot allocate memory",
    	13: "permission denied",
    	14: "bad address",
    	15: "block device required",
    	16: "device busy",
    	17: "file exists",
    	18: "cross-device link",
    	19: "operation not supported by device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Futures.java

        }
    
        final ImmutableList<AbstractFuture<T>> delegates = delegatesBuilder.build();
        for (int i = 0; i < copy.length; i++) {
          final int localI = i;
          copy[i].addListener(() -> state.recordInputCompletion(delegates, localI), directExecutor());
        }
    
        @SuppressWarnings("unchecked")
        ImmutableList<ListenableFuture<T>> delegatesCast = (ImmutableList) delegates;
        return delegatesCast;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	BS1                           = 0x2000
    	BSDLY                         = 0x2000
    	CBAUD                         = 0xf
    	CFLUSH                        = 0xf
    	CIBAUD                        = 0xf0000
    	CLOCAL                        = 0x800
    	CLOCK_HIGHRES                 = 0x4
    	CLOCK_LEVEL                   = 0xa
    	CLOCK_MONOTONIC               = 0x4
    	CLOCK_PROCESS_CPUTIME_ID      = 0x5
    	CLOCK_PROF                    = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
Back to top