Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for osx (0.03 seconds)

  1. src/archive/zip/testdata/time-osx.zip

    Joe Tsai <******@****.***> 1503947278 -0700
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Nov 06 19:50:28 GMT 2017
    - 142 bytes
    - Click Count (0)
  2. src/archive/zip/testdata/utf8-osx.zip

    Joe Tsai <******@****.***> 1509655996 -0700
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Nov 06 21:35:59 GMT 2017
    - 138 bytes
    - Click Count (0)
  3. buildscripts/checkdeps.sh

    	OSX_VERSION="10.8"
    	KNAME=$(uname -s)
    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    ## Once OSX has the option, below function is good enough.
    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Jun 08 16:12:05 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  4. .gitignore

    # OSX leaves these everywhere on SMB shares
    ._*
    
    # OSX trash
    .DS_Store
    
    # Developers can store local stuff in dirs named __something
    __*
    
    # Eclipse files
    .classpath
    .project
    .settings/**
    
    # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
    .idea/
    *.iml
    
    # Vscode files
    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Mar 17 02:28:41 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  5. okhttp-testing-support/build.gradle.kts

      // operating systems or architectures.
      api(
        variantOf(libs.amazon.corretto) {
          classifier(
            when {
              OperatingSystem.current().isMacOsX -> "osx-aarch_64"
              OperatingSystem.current().isLinux -> "linux-x86_64"
              else -> "linux-x86_64" // Code that references Corretto will build but not run.
            },
          )
        },
      )
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 1.3K bytes
    - Click Count (1)
  6. .gitignore

    nb-configuration.xml
    nbactions.xml
    
    # gradle stuff
    .gradle/
    build/
    
    # vscode stuff
    .vscode/
    
    # vs stuff
    .vs/
    
    # testing stuff
    **/.local*
    .vagrant/
    /logs/
    
    # osx stuff
    .DS_Store
    
    # default folders in which the create_bwc_index.py expects to find old es versions in
    /backwards
    /dev-tools/backwards
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 10 23:06:44 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/JdkDownloadPlugin.java

        }
    
        private static String dependencyNotation(Jdk jdk) {
            String platformDep = jdk.getPlatform().equals("darwin") || jdk.getPlatform().equals("mac")
                ? (jdk.getVendor().equals(VENDOR_ADOPTIUM) ? "mac" : "osx")
                : jdk.getPlatform();
            String extension = jdk.getPlatform().equals("windows") ? "zip" : "tar.gz";
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 7.6K bytes
    - Click Count (0)
Back to Top