Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 701 for 1034 (0.43 sec)

  1. test/uintptrescapes.dir/main.go

    	"./a"
    )
    
    func F1() int {
    	var buf [1024]int
    	a.F1(uintptr(unsafe.Pointer(&buf[0])))
    	return buf[0]
    }
    
    func F2() int {
    	var buf [1024]int
    	a.F2(uintptr(unsafe.Pointer(&buf[0])))
    	return buf[0]
    }
    
    var t = a.GetT()
    
    func M1() int {
    	var buf [1024]int
    	t.M1(uintptr(unsafe.Pointer(&buf[0])))
    	return buf[0]
    }
    
    func M2() int {
    	var buf [1024]int
    	t.M2(uintptr(unsafe.Pointer(&buf[0])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 06 20:48:41 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/insert_fallback_tensor_copy.mlir

      %6 = tfrt_fallback_async.executeop key(1) cost(1024) device("/job:localhost/replica:0/task:0/device:CPU:0") "tf.AddV2"(%arg, %arg) {T = f32} : 1
      %7 = tfrt_fallback_async.executeop key(1) cost(1024) device("/job:localhost/replica:0/task:0/device:CPU:0") "tf.AddV2"(%arg, %arg) {T = f32} : 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:51:48 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    						NUMAAffinity: []int{0},
    						Type:         v1.ResourceMemory,
    						Size:         1024,
    					},
    				},
    			},
    		},
    		machineState: NUMANodeMap{
    			0: &NUMANodeState{
    				MemoryMap: map[v1.ResourceName]*MemoryTable{
    					v1.ResourceMemory: {
    						Allocatable:    1536,
    						Free:           512,
    						Reserved:       1024,
    						SystemReserved: 512,
    						TotalMemSize:   2048,
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/CGroupMemoryInfoTest.groovy

            expect:
            snapshot.physicalMemory.total == mbsToBytes(1024)
            snapshot.physicalMemory.free == mbsToBytes(224)
        }
    
        def "negative free memory returns zero"() {
            def snapshot = new CGroupMemoryInfo().getOsSnapshotFromCgroup(mbsToBytesAsString(1024), mbsToBytesAsString(512))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

                inputStream.read(new byte[560])
                inputStream.read(new byte[1000])
                inputStream.read(new byte[1600])
                inputStream.read(new byte[1024])
                inputStream.read(new byte[1024])
                "result"
            }
            1 * context.progress(1562, 4096, 'bytes', '1.5 KiB/4 KiB downloaded')
            1 * context.progress(3162, 4096, 'bytes', '3 KiB/4 KiB downloaded')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            if (value < 1024) {
                format = "0";
            } else if (value < 1024L * 1024L) {
                target /= 1024;
                unit = "K";
            } else if (value < 1024L * 1024L * 1024L) {
                target /= 1024;
                target /= 1024;
                unit = "M";
            } else if (value < 1024L * 1024L * 1024L * 1024L) {
                target /= 1024;
                target /= 1024;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar.sha1

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 40 bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom.sha1

    b7de43bb310eb1dbfd00a34cec30500fa13cb577  /home/projects/maven/repository-staging/to-ibiblio/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 164 bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar.sha1

    Tamas Cservenak <******@****.***> 1703012935 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 40 bytes
    - Viewed (0)
  10. src/runtime/pprof/mprof_test.go

    import (
    	"bytes"
    	"fmt"
    	"internal/profile"
    	"reflect"
    	"regexp"
    	"runtime"
    	"testing"
    	"unsafe"
    )
    
    var memSink any
    
    func allocateTransient1M() {
    	for i := 0; i < 1024; i++ {
    		memSink = &struct{ x [1024]byte }{}
    	}
    }
    
    //go:noinline
    func allocateTransient2M() {
    	memSink = make([]byte, 2<<20)
    }
    
    func allocateTransient2MInline() {
    	memSink = make([]byte, 2<<20)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:20:22 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top