Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,009 for small7 (0.11 sec)

  1. pkg/scheduler/framework/preemption/preemption.go

    				// picked over a node with a smaller number of pods with the same negative
    				// priority (and similar scenarios).
    				sumPriorities += int64(corev1helpers.PodPriority(pod)) + int64(math.MaxInt32+1)
    			}
    			// The smaller the sumPriorities, the higher the score.
    			return -sumPriorities
    		}
    		minNumPodsScoreFunc := func(node string) int64 {
    			// The smaller the length of pods, the higher the score.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/net/internal/cgotest/resstate.go

    package cgotest
    
    /*
    #include <resolv.h>
    */
    import "C"
    
    import (
    	"internal/syscall/unix"
    	"unsafe"
    )
    
    // This will cause a compile error when the size of
    // unix.ResState is too small.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:09:52 UTC 2024
    - 455 bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractTaskOutputPackagingBenchmark.java

            .put("tar.snappy.small", new SnappyPacker(new CommonsTarPacker(2)))
            .put("tar.snappy.large", new SnappyPacker(new CommonsTarPacker(64)))
            .put("tar", new CommonsTarPacker(4))
            .put("tar.commons", new CommonsTarPacker(4))
            .put("tar.jtar", new JTarPacker(4))
            .put("tar.small", new CommonsTarPacker(2))
            .put("tar.large", new CommonsTarPacker(64))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/BUILD

            "//tensorflow/core/platform:str_util",
            "@com_google_absl//absl/strings",
        ],
        alwayslink = 1,
    )
    
    tf_cc_test(
        name = "cpp_generator_test",
        size = "small",
        srcs = ["cpp_generator_test.cc"],
        data = ["//tensorflow/c/experimental/ops/gen/cpp/golden"],
        deps = [
            ":cpp",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #     size_override = {
    #         "compile.benchmark.small.mlir": "medium",
    #         "batching_fallback.mlir": "medium",
    #     },
    #     tags_override = {
    #         "async_op_thread.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    #         "batching_fallback.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/BUILD

            "//tensorflow/core:lib",
            "//tensorflow/core:lib_internal",
            "@com_google_absl//absl/strings",
        ],
        alwayslink = 1,
    )
    
    tf_cc_tests(
        name = "renderer_tests",
        size = "small",
        srcs = glob(
            ["*_test.cc"],
        ),
        deps = [
            ":renderers",
            "//tensorflow/c/experimental/ops/gen/common",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 21:13:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/ByteStreamsTest.java

        assertEquals(-1, read);
    
        lin.reset();
        byte[] small = new byte[5];
        read = lin.read(small);
        assertEquals(2, read);
        assertEquals(big[0], small[0]);
        assertEquals(big[1], small[1]);
    
        lin.reset();
        read = lin.read(small, 2, 3);
        assertEquals(2, read);
        assertEquals(big[0], small[2]);
        assertEquals(big[1], small[3]);
      }
    
      public void testLimit_mark() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/outbuf_nommap.go

    func (out *OutBuf) Mmap(filesize uint64) error {
    	// We need space to put all the symbols before we apply relocations.
    	oldheap := out.heap
    	if filesize < uint64(len(oldheap)) {
    		panic("mmap size too small")
    	}
    	out.heap = make([]byte, filesize)
    	copy(out.heap, oldheap)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 660 bytes
    - Viewed (0)
  9. src/syscall/dirent_test.go

    	buf := bytes.Repeat([]byte{0xCD}, direntBufSize)
    	for {
    		n, err := syscall.ReadDirent(fd, buf)
    		if err == syscall.EINVAL {
    			// On linux, 'man getdents64' says that EINVAL indicates “result buffer is too small”.
    			// Try a bigger buffer.
    			t.Logf("ReadDirent: %v; retrying with larger buffer", err)
    			buf = bytes.Repeat([]byte{0xCD}, len(buf)*2)
    			continue
    		}
    		if err != nil {
    			t.Fatalf("syscall.readdir: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/runtime/mwbbuf.go

    // stack frame (since we don't know the types of the spilled
    // registers).
    
    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // testSmallBuf forces a small write barrier buffer to stress write
    // barrier flushing.
    const testSmallBuf = false
    
    // wbBuf is a per-P buffer of pointers queued by the write barrier.
    // This buffer is flushed to the GC workbufs when it fills up and on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top