Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for MAC (0.26 sec)

  1. src/crypto/tls/conn.go

    	}
    	return hc.err
    }
    
    // prepareCipherSpec sets the encryption and MAC states
    // that a subsequent changeCipherSpec will use.
    func (hc *halfConn) prepareCipherSpec(version uint16, cipher any, mac hash.Hash) {
    	hc.version = version
    	hc.nextCipher = cipher
    	hc.nextMac = mac
    }
    
    // changeCipherSpec changes the encryption and MAC states
    // to the ones previously passed to prepareCipherSpec.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    // Port returns just the Port part of the endpoint.
    func (info *endpointInfo) Port() int {
    	return int(info.port)
    }
    
    // Uses mac prefix and IPv4 address to return a mac address
    // This ensures mac addresses are unique for proper load balancing
    // There is a possibility of MAC collisions but this Mac address is used for remote endpoints only
    // and not sent on the wire.
    func conjureMac(macPrefix string, ip net.IP) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # Sometimes Bazel reports darwin_x86_64 as "darwin" and sometimes as
    # "darwin_x86_64". The former shows up when building on a Mac x86_64 host for a Mac x86_64 target.
    # The latter shows up when cross-compiling for Mac x86_64 from a Mac ARM machine and in internal
    # Google builds.
    config_setting(
        name = "macos_x86_64_default",
        constraint_values = if_google(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

        case "$(uname -s)" in
          Darwin)
            START_MODE=nokubelet,nokubeproxy
            ;;
          Linux)
            START_MODE=all
            ;;
          *)
            echo "Unsupported host OS.  Must be Linux or Mac OS X." >&2
            exit 1
            ;;
        esac
    fi
    
    # A list of controllers to enable
    KUBE_CONTROLLERS="${KUBE_CONTROLLERS:-"*"}"
    
    # Audit policy
    AUDIT_POLICY_FILE=${AUDIT_POLICY_FILE:-""}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. .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)
  6. gradle/verification-metadata.xml

                <sha256 value="46a9b4a311820b2c1841110affa286d65665ac9f8970fd9e9eb903c3d7aa436e" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
             <artifact name="android-studio-2023.3.1.18.mac.zip">
                <sha256 value="b0b5a2cec33e331c30727a06356c2724e7d9a8f5e78dc76cdb62eb6f2442c569" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    If the above doesn't work and you suspect an issue with the Kotlin DSL script editor, you can:
    
    * Run `./gradle tasks` to get more details
    * Check the logs in one of these locations:
    ** `$HOME/Library/Logs/gradle-kotlin-dsl` on Mac OS X
    ** `$HOME/.gradle-kotlin-dsl/log` on Linux
    ** `$HOME/AppData/Local/gradle-kotlin-dsl/log` on Windows
    * Open an issue on the link:{gradle-issues}[Gradle issue tracker], including as much detail as you can.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/os/os_test.go

    	}
    }
    
    func TestChdirAndGetwd(t *testing.T) {
    	fd, err := Open(".")
    	if err != nil {
    		t.Fatalf("Open .: %s", err)
    	}
    	// These are chosen carefully not to be symlinks on a Mac
    	// (unlike, say, /var, /etc), except /tmp, which we handle below.
    	dirs := []string{"/", "/usr/bin", "/tmp"}
    	// /usr/bin does not usually exist on Plan 9 or Android.
    	switch runtime.GOOS {
    	case "android":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top