Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 673 for small7 (0.23 sec)

  1. src/crypto/rsa/rsa_test.go

    		t.Errorf("Validate() failed: %s", err)
    	}
    
    	msg := []byte("test")
    	enc, err := EncryptPKCS1v15(rand.Reader, &priv.PublicKey, msg)
    	if err == ErrMessageTooLong {
    		t.Log("key too small for EncryptPKCS1v15")
    	} else if err != nil {
    		t.Errorf("EncryptPKCS1v15: %v", err)
    	}
    	if err == nil {
    		dec, err := DecryptPKCS1v15(nil, priv, enc)
    		if err != nil {
    			t.Errorf("DecryptPKCS1v15: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/cc/saved_model/BUILD

            "@com_google_absl//absl/status",
            "@com_google_absl//absl/status:statusor",
            "@com_google_absl//absl/strings",
        ],
    )
    
    tf_cc_test(
        name = "metrics_test",
        size = "small",
        srcs = ["metrics_test.cc"],
        deps = [
            ":metrics",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    			// Found a matching, unallocated instance. Let's use it.
    			//
    			// A more thorough search would include backtracking because
    			// allocating one "large" instances for a "small" request may
    			// make a following "large" request impossible to satisfy when
    			// only "small" instances are left.
    			instances[i].Allocated = true
    			indices = append(indices, i)
    			break
    		}
    	}
    	return indices, nil
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top