Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Chip (0.05 sec)

  1. src/net/http/cookiejar/example_test.go

    	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if cookie, err := r.Cookie("Flavor"); err != nil {
    			http.SetCookie(w, &http.Cookie{Name: "Flavor", Value: "Chocolate Chip"})
    		} else {
    			cookie.Value = "Oatmeal Raisin"
    			http.SetCookie(w, cookie)
    		}
    	}))
    	defer ts.Close()
    
    	u, err := url.Parse(ts.URL)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 03:47:00 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_arm.go

    	ARM.HasIDIVA = isSet(HWCap, hwcap_IDIVA)
    	// lpae is required to make the 64-bit instructions LDRD and STRD (and variants) atomic.
    	// See ARMv7 manual section B1.6.
    	// We also need at least a v7 chip, for the DMB instruction.
    	ARM.HasV7Atomics = isSet(HWCap, hwcap_LPAE) && isV7(Platform)
    }
    
    func isSet(hwc uint, value uint) bool {
    	return hwc&value != 0
    }
    
    func isV7(s string) bool {
    	if s == "aarch64" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:38:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/flags_test.go

    // license that can be found in the LICENSE file.
    
    //go:build amd64 || arm64
    
    package ssa
    
    // This file tests the functions addFlags64 and subFlags64 by comparing their
    // results to what the chip calculates.
    
    import (
    	"runtime"
    	"testing"
    )
    
    func TestAddFlagsNative(t *testing.T) {
    	var numbers = []int64{
    		1, 0, -1,
    		2, -2,
    		1<<63 - 1, -1 << 63,
    	}
    	coverage := map[flagConstant]bool{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:36:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasPCLMULQDQ        bool // PCLMULQDQ instruction - most often used for AES-GCM
    	HasPOPCNT           bool // Hamming weight instruction POPCNT.
    	HasRDRAND           bool // RDRAND instruction (on-chip random number generator)
    	HasRDSEED           bool // RDSEED instruction (on-chip random number generator)
    	HasSSE2             bool // Streaming SIMD extension 2 (always available on amd64)
    	HasSSE3             bool // Streaming SIMD extension 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        This pass sets the device ordinal attribute of the ops using the replica id
        attribute. This is run immediately after the replica_to_island pass which
        sets the replica id attribute of these ops. Note for single chip usecase,
        the pass will check if there is one op and sets the device ordinal attribute
        to be zero.
      }];
    }
    
    def ConvertReadonlyReferenceVariablesToResourceVariablesPass :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	EM_Z80           Machine = 220 /* Zilog Z80 */
    	EM_VISIUM        Machine = 221 /* Controls and Data Services VISIUMcore processor */
    	EM_FT32          Machine = 222 /* FTDI Chip FT32 high performance 32-bit RISC architecture */
    	EM_MOXIE         Machine = 223 /* Moxie processor family */
    	EM_AMDGPU        Machine = 224 /* AMD GPU architecture */
    	EM_RISCV         Machine = 243 /* RISC-V */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass sets the device ordinal attribute of the ops using the replica id
    attribute. This is run immediately after the replica_to_island pass which
    sets the replica id attribute of these ops. Note for single chip usecase,
    the pass will check if there is one op and sets the device ordinal attribute
    to be zero.
    ### `-tf-replicate-invariant-op-hoisting`
    
    _Hoists replicate invariant operations out of replicate_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    	//   to continue receiving logs, so it cannot be start or
    	//   stop;
    	if (hip.forceStart && hip.forceStop) ||
    		(hip.clientToken != "" && (hip.forceStart || hip.forceStop)) {
    		err = ErrInvalidRequest
    		return
    	}
    
    	// ignore body if clientToken is provided
    	if hip.clientToken == "" {
    		jerr := json.NewDecoder(r).Decode(&hip.hs)
    		if jerr != nil {
    			adminLogIf(GlobalContext, jerr, logger.ErrorKind)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. platforms/jvm/distributions-jvm/build.gradle.kts

        pluginsRuntimeOnly(project(":scala"))
        pluginsRuntimeOnly(project(":war"))
    
        pluginsRuntimeOnly(project(":java-platform")) {
            because("Aspirationally, we likely need a platform-base plugin that would ship in the same distribution as dependency-management, and isn't java specific - unfortunately this plugin applies the JvmEcosystemPlugin.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/packaging/common/scripts/prerm

            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
            else
                /etc/init.d/fess stop || true
            fi
    
        # older suse linux distributions do not ship with systemd
        # but do not have an /etc/init.d/ directory
        # this tries to start the fess service on these
        # as well without failing this script
        elif [ -x /etc/rc.d/init.d/fess ] ; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
Back to top