Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for MAC (0.08 sec)

  1. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivatorTest.java

        }
    
        @Test
        public void testCapitalOsName() {
            Profile profile = newProfile(ActivationOS.newBuilder()
                    .family("Mac")
                    .name("Mac OS X")
                    .arch("aarch64")
                    .version("14.5"));
    
            assertActivation(false, profile, newContext(null, newProperties("linux", "6.5.0-1014-aws", "amd64")));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. cmd/encryption-v1.go

    		return err
    	}
    
    	var partIDbin [4]byte
    	binary.LittleEndian.PutUint32(partIDbin[:], uint32(partID)) // marshal part ID
    
    	mac := hmac.New(sha256.New, objectEncryptionKey) // derive part encryption key from part ID and object key
    	mac.Write(partIDbin[:])
    	partEncryptionKey := mac.Sum(nil)
    
    	// Limit the reader, so the decryptor doesn't receive bytes
    	// from the next part (different DARE stream)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/Os.kt

            "Windows",
            androidHome = """C:\Program Files\android\sdk""",
            jprofilerHome = """C:\Program Files\jprofiler\jprofiler11.1.4""",
            perfTestWorkingDir = "P:/",
        ),
        MACOS(
            "Mac",
            androidHome = "/opt/android/sdk",
            jprofilerHome = "/Applications/JProfiler11.1.4.app",
            defaultArch = Arch.AARCH64
        );
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. build/common.sh

          return 0
        fi
    
        kube::log::status "No docker host is set."
        kube::log::status "It looks like you're running Mac OS X, but Docker for Mac cannot be found."
        kube::log::status "See: https://docs.docker.com/engine/installation/mac/ for installation instructions."
        return 1
      fi
    }
    
    function kube::build::is_osx() {
      [[ "$(uname)" == "Darwin" ]]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. cmd/sftp-server.go

    var preferredCiphers = []string{
    	"******@****.***", gcm256CipherID,
    	chacha20Poly1305ID,
    	"aes128-ctr", "aes192-ctr", "aes256-ctr",
    }
    
    // supportedMACs specifies a default set of MAC algorithms in preference order.
    // This is based on RFC 4253, section 6.4, but with hmac-md5 variants removed
    // because they have reached the end of their useful life.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. common/scripts/setup_env.sh

        CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${local_config},destination=/config/${kubeconfig_random} "
      fi
    }
    
    # This function is designed for maximum compatibility with various platforms. This runs on
    # any Mac or Linux platform with bash 4.2+. Please take care not to modify this function
    # without testing properly.
    #
    # This function will properly handle any type of path including those with spaces using the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/build.gradle

            if (!OperatingSystem.current().macOsX) {
                excludeTestsMatching "org.gradle.docs.samples.*.building-swift-*.sample"
            }
            // We don't maintain Java 7 on Windows and Mac
            if (OperatingSystem.current().windows || OperatingSystem.current().macOsX) {
                excludeTestsMatching "*java7CrossCompilation.sample"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. src/time/tick_test.go

    		go func() {
    			defer wg.Done()
    			Sleep(10 * Microsecond)
    		}()
    	}
    	for range count {
    		Sleep(1 * Microsecond)
    	}
    
    	// Give ourselves 60 seconds to complete.
    	// This used to reliably fail on a Mac M3 laptop,
    	// which needed 77 seconds.
    	// Trybots are slower, so it will fail even more reliably there.
    	// With the fix, the code runs in under a second.
    	done := make(chan bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. .bazelrc

    build:release_macos_base --action_env  DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    build:release_macos_base --define=no_nccl_support=true --output_filter=^$
    
    # Ensure release_base is set on mac
    build:release_macos_base --config=release_base
    
    # Build configs for macOS x86
    build:release_macos_x86 --config=release_macos_base
    # Build with the AVX instruction set when on macOS x86
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/fsys/fsys.go

    }
    
    // readDir reads a dir on disk, returning an error that is errNotDir if the dir is not a directory.
    // Unfortunately, the error returned by os.ReadDir if dir is not a directory
    // can vary depending on the OS (Linux, Mac, Windows return ENOTDIR; BSD returns EINVAL).
    func readDir(dir string) ([]fs.FileInfo, error) {
    	entries, err := os.ReadDir(dir)
    	if err != nil {
    		if os.IsNotExist(err) {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top