Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for small7 (0.19 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go

    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "result too large or too small"},
    	{35, "EAGAIN", "resource temporarily unavailable"},
    	{36, "EINPROGRESS", "operation now in progress"},
    	{37, "EALREADY", "operation already in progress"},
    	{38, "ENOTSOCK", "socket operation on non-socket"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go

    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "result too large or too small"},
    	{35, "EAGAIN", "resource temporarily unavailable"},
    	{36, "EINPROGRESS", "operation now in progress"},
    	{37, "EALREADY", "operation already in progress"},
    	{38, "ENOTSOCK", "socket operation on non-socket"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go

    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "result too large or too small"},
    	{35, "EAGAIN", "resource temporarily unavailable"},
    	{36, "EINPROGRESS", "operation now in progress"},
    	{37, "EALREADY", "operation already in progress"},
    	{38, "ENOTSOCK", "socket operation on non-socket"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    `maxval` is excluded.
    
    The random integers are slightly biased unless `maxval - minval` is an exact
    power of two.  The bias is small for values of `maxval - minval` significantly
    smaller than the range of the output (either `2^32` or `2^64`).
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_VariableRead,TF_VariableWrite]>:$resource,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// a conflict and is faster.
    			//
    			// We could return an error here and rely on
    			// backoff+retry, but scheduling attempts are expensive
    			// and the backoff delay would cause a (small)
    			// slowdown. Therefore we fall back to SSA here if needed.
    			//
    			// Using SSA instead of Get+Update has the advantage that
    			// there is no delay for the Get. SSA is safe because only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Strip off any fractional word zeroing.
    (Zero [s] destptr mem) && s%8 != 0 && s > 8 && !config.useSSE =>
    	(Zero [s-s%8] (OffPtr <destptr.Type> destptr [s%8])
    		(MOVQstoreconst [makeValAndOff(0,0)] destptr mem))
    
    // Zero small numbers of words directly.
    (Zero [16] destptr mem) && !config.useSSE =>
    	(MOVQstoreconst [makeValAndOff(0,8)] destptr
    		(MOVQstoreconst [makeValAndOff(0,0)] destptr mem))
    (Zero [24] destptr mem) && !config.useSSE =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    	"github.com/minio/minio/internal/disk"
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    	"github.com/pkg/xattr"
    )
    
    const (
    	nullVersionID = "null"
    
    	// Small file threshold below which data accompanies metadata from storage layer.
    	smallFileThreshold = 128 * humanize.KiByte // Optimized for NVMe/SSDs
    
    	// For hardrives it is possible to set this to a lower value to avoid any
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // size of a static array:
    //
    //   GTEST_COMPILE_ASSERT_(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
    //                         content_type_names_incorrect_size);
    //
    // or to make sure a struct is smaller than a certain size:
    //
    //   GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large);
    //
    // The second argument to the macro is the name of the variable. If
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. src/testing/testing.go

    // (where <Name> is the name of the fuzz test) within the package containing
    // the fuzz test. Seed inputs are optional, but the fuzzing engine may find
    // bugs more efficiently when provided with a set of small seed inputs with good
    // code coverage. These seed inputs can also serve as regression tests for bugs
    // identified through fuzzing.
    //
    // The function passed to (*F).Fuzz within the fuzz test is considered the fuzz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    		if err != nil {
    			c.Fatalf("normalize err: %v", err)
    		}
    		return normalizedDN
    	}
    
    	actualUserDN := mustNormalizeDN("uid=svc.algorithm,OU=swengg,DC=min,DC=io")
    
    	// \uFE52 is the unicode dot SMALL FULL STOP used below:
    	userDNWithUnicodeDot := "uid=svc﹒algorithm,OU=swengg,DC=min,DC=io"
    
    	if err = s.adm.SetPolicy(ctx, policy, userDNWithUnicodeDot, false); err != nil {
    		c.Fatalf("Unable to set policy: %v", err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top