Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 134 for exportable (0.32 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
    
      <mime-type type="image/x-portable-anymap">
        <acronym>PNM</acronym>
        <_comment>Portable Any Map</_comment>
        <glob pattern="*.pnm" />
      </mime-type>
    
      <mime-type type="image/x-portable-bitmap">
        <sub-class-of type="image/x-portable-anymap"/>
        <acronym>PBM</acronym>
        <_comment>Portable Bit Map</_comment>
        <magic priority="50">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. src/debug/pe/file.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Package pe implements access to PE (Microsoft Windows Portable Executable) files.
    
    # Security
    
    This package is not designed to be hardened against adversarial inputs, and is
    outside the scope of https://go.dev/security/policy. In particular, only basic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    	}
    }
    
    // An As denotes an assembler opcode.
    // There are some portable opcodes, declared here in package obj,
    // that are common to all architectures.
    // However, the majority of opcodes are arch-specific
    // and are declared in their respective architecture's subpackage.
    type As int16
    
    // These are the portable opcodes.
    const (
    	AXXX As = iota
    	ACALL
    	ADUFFCOPY
    	ADUFFZERO
    	AEND
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/repo.go

    // In this example, "rsc.io/qr" is both a module path and an import path.
    // But "rsc.io/qr/gf256" is only an import path, not a module path:
    // it names an importable package, but not a module.
    //
    // As a special case to incorporate code written before modules were
    // introduced, if a path p resolves using the pre-module "go get" lookup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. misc/go_android_exec/main.go

    // license that can be found in the LICENSE file.
    
    // This wrapper uses syscall.Flock to prevent concurrent adb commands,
    // so for now it only builds on platforms that support that system call.
    // TODO(#33974): use a more portable library for file locking.
    
    //go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd
    
    // This program can be used as go_android_GOARCH_exec by the Go tool.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"db05bf4d0f73325208755f4af96cfac6cb3db5dbfc323d675d68f938",
    		"C is as portable as Stonehedge!!",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  7. src/os/file_plan9.go

    }
    
    // DevNull is the name of the operating system's “null device.”
    // On Unix-like systems, it is "/dev/null"; on Windows, "NUL".
    const DevNull = "/dev/null"
    
    // syscallMode returns the syscall-specific mode bits from Go's portable mode bits.
    func syscallMode(i FileMode) (o uint32) {
    	o |= uint32(i.Perm())
    	if i&ModeAppend != 0 {
    		o |= syscall.DMAPPEND
    	}
    	if i&ModeExclusive != 0 {
    		o |= syscall.DMEXCL
    	}
    	if i&ModeTemporary != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util_test.cc

        xla::ExecuteOptions exe_options;
        exe_options.arguments_are_tupled = false;
        exe_options.untuple_result = true;
    
        // TODO(b/257548614): currently PJRT is compiled as portable (num_replica =
        // 1 and num_partition = 1). Support multiple partitions case.
        return executable->ExecutePortable(executable_args, pjrt_device,
                                           exe_options);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. src/internal/poll/fd_unix.go

    		if err == nil {
    			return r0, "", nil
    		}
    		switch err {
    		case syscall.EINVAL, syscall.ENOSYS:
    			// Old kernel, or js/wasm (which returns
    			// ENOSYS). Fall back to the portable way from
    			// now on.
    			dupCloexecUnsupported.Store(true)
    		default:
    			return -1, "fcntl", err
    		}
    	}
    	return dupCloseOnExecOld(fd)
    }
    
    // Dup duplicates the file descriptor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    However, it is still used to store downloaded source code (in GOPATH/pkg/mod)
    and compiled commands (in GOPATH/bin).
    
    Internal Directories
    
    Code in or below a directory named "internal" is importable only
    by code in the directory tree rooted at the parent of "internal".
    Here's an extended version of the directory layout above:
    
        /home/user/go/
            src/
                crash/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top