Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for mem0 (0.07 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

    SP_DeviceMemoryBase DeviceMemoryBaseToC(const DeviceMemoryBase* mem) {
      SP_DeviceMemoryBase device_memory_base{SP_DEVICE_MEMORY_BASE_STRUCT_SIZE};
      // `opaque` field inside SP_DeviceMemoryBase is not const.
      // Therefore, we need to cast away the constness before setting it.
      device_memory_base.opaque = const_cast<void*>(mem->opaque());
      device_memory_base.size = mem->size();
      device_memory_base.payload = mem->payload();
      return device_memory_base;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. samples/addons/extras/zipkin.yaml

            sidecar.istio.io/inject: "false"
        spec:
          containers:
            - name: zipkin
              image: openzipkin/zipkin-slim:3.4.0
              env:
                - name: STORAGE_METHOD
                  value: "mem"
              readinessProbe:
                httpGet:
                  path: /health
                  port: 9411
                initialDelaySeconds: 5
                periodSeconds: 5
    ---
    apiVersion: v1
    kind: Service
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	return s.newValue2(ssa.OpLoad, t, src, s.mem())
    }
    
    func (s *state) store(t *types.Type, dst, val *ssa.Value) {
    	s.vars[memVar] = s.newValue3A(ssa.OpStore, types.TypeMem, t, dst, val, s.mem())
    }
    
    func (s *state) zero(t *types.Type, dst *ssa.Value) {
    	s.instrument(t, dst, instrumentWrite)
    	store := s.newValue2I(ssa.OpZero, types.TypeMem, t.Size(), dst, s.mem())
    	store.Aux = t
    	s.vars[memVar] = store
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. cmd/handler-api.go

    package cmd
    
    import (
    	"math"
    	"net/http"
    	"os"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/shirou/gopsutil/v3/mem"
    
    	"github.com/minio/minio/internal/config/api"
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/mcontext"
    )
    
    type apiConfig struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. go.mod

    	golang.org/x/sys v0.21.0
    	golang.org/x/term v0.21.0
    	golang.org/x/time v0.5.0
    	google.golang.org/api v0.184.0
    	gopkg.in/yaml.v2 v2.4.0
    	gopkg.in/yaml.v3 v3.0.1
    )
    
    require (
    	aead.dev/mem v0.2.0 // indirect
    	aead.dev/minisign v0.3.0 // indirect
    	cloud.google.com/go v0.115.0 // indirect
    	cloud.google.com/go/auth v0.5.1 // indirect
    	cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    //	b1:
    //	    v3 = ArgIntReg <int> {p1+0} [0] : AX
    //	    ... more arg regs ..
    //	    v4 = ArgFloatReg <float32> {f1+0} [0] : X0
    //	    v52 = MOVQstore <mem> {p1} v2 v3 v1
    //	    ... more stores ...
    //	    v68 = MOVSSstore <mem> {f4} v2 v67 v66
    //	    v38 = MOVQstoreconst <mem> {blob} [val=0,off=0] v2 v32
    //
    // Important: locatePrologEnd is expected to work properly only with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. go.sum

    aead.dev/mem v0.2.0 h1:ufgkESS9+lHV/GUjxgc2ObF43FLZGSemh+W+y27QFMI=
    aead.dev/mem v0.2.0/go.mod h1:4qj+sh8fjDhlvne9gm/ZaMRIX9EkmDrKOLwmyDtoMWM=
    aead.dev/minisign v0.2.0/go.mod h1:zdq6LdSd9TbuSxchxwhpA9zEb9YXcVGoE8JakuiGaIQ=
    aead.dev/minisign v0.3.0 h1:8Xafzy5PEVZqYDNP60yJHARlW1eOQtsKNp/Ph2c0vRA=
    aead.dev/minisign v0.3.0/go.mod h1:NLvG3Uoq3skkRMDuc3YHpWUTMTrSExqm+Ij73W13F6Y=
    cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    	capacityUsableSubsystem   MetricSubsystem = "capacity_usable"
    	driveSubsystem            MetricSubsystem = "drive"
    	interfaceSubsystem        MetricSubsystem = "if"
    	memSubsystem              MetricSubsystem = "mem"
    	cpuSubsystem              MetricSubsystem = "cpu_avg"
    	storageClassSubsystem     MetricSubsystem = "storage_class"
    	fileDescriptorSubsystem   MetricSubsystem = "file_descriptor"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //	    Sets -cover.
    //
    //	-cpuprofile cpu.out
    //	    Write a CPU profile to the specified file before exiting.
    //	    Writes test binary as -c would.
    //
    //	-memprofile mem.out
    //	    Write an allocation profile to the file after all tests have passed.
    //	    Writes test binary as -c would.
    //
    //	-memprofilerate n
    //	    Enable more precise (and expensive) memory allocation profiles by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. RELEASE.md

    Niedermeier, Junpeng Lao, Kai Sasaki, @Kankroc, Karl Lessard, Kyle Bostelmann,
    @Lezcano, Li Yi, Luo Yun, @lurker, Mahmoud-Abuzaina, Mandeep Singh, Marek
    Kolodziej, Mark Szepieniec, Martial Hue, Medhat Omr, Memo Akten, Michael Gharbi,
    MichaƫL Defferrard, Milan Straka, @MircoT, @mlucool, Muammar Ibn Faisal, Nayana
    Thorat, @nghiattran, Nicholas Connor, Nikolaas Steenbergen, Niraj Patel,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top