Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 17 for osx (0.02 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. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/JdkDownloadPluginFuncTest.groovy

                return "/jdk-" + version + "/" + module + "/${arch}/jdk/hotspot/normal/adoptium";
            } else if (vendor.equals(VENDOR_OPENJDK)) {
                final String effectivePlatform = isMac(platform) ? "osx" : platform;
                final boolean isOld = version.equals(OPENJDK_VERSION_OLD);
                final String versionPath = isOld ? "jdk1/99" : "jdk12.0.1/123456789123456789123456789abcde/99";
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 10.5K bytes
    - Click Count (0)
  7. .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)
  8. 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)
  9. src/main/webapp/css/admin/adminlte.min.css

    7bff;box-shadow:120px 0 #fff,240px 0 #fff}.pace-loading-bar-primary .pace .pace-activity{box-shadow:inset 0 0 0 2px #007bff,inset 0 0 0 7px #fff}.pace-mac-osx-primary .pace .pace-progress{background-color:#007bff;box-shadow:inset -1px 0 #007bff,inset 0 -1px #007bff,inset 0 2px rgba(255,255,255,.5),inset 0 6px rgba(255,255,255,.3)}.pace-mac-osx-primary .pace .pace-activity{background-image:radial-gradient(rgba(255,255,255,.65) 0,rgba(255,255,255,.15) 100%);height:12px}.pace-progress-color-primary...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 1.3M bytes
    - Click Count (0)
  10. tensorflow/BUILD

        constraint_values =
            [
                "@platforms//cpu:x86_64",
                "@platforms//os:ios",
            ],
        values = dict(
            if_oss(
                {"crosstool_top": "//tools/osx/crosstool:crosstool"},
            ),
        ),
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "chromiumos",
        constraint_values = if_google(
            ["@platforms//os:chromiumos"],
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Mar 24 21:00:18 GMT 2026
    - 53.1K bytes
    - Click Count (0)
Back to Top