Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for small7 (0.38 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.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.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return success();
      }
    };
    
    // Rewrites `TensorListResize` op into a functional `If` op and several basic
    // TF ops to match the op semantics of Tensorflow. Basically, it does:
    // 1) If the requested size is smaller or equal than the input tensorlist's
    // size, rewrite it to a Slice op so that only the first 'size' rows are
    // returned. 2) If the requested size is larger than the input tensorlist's
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

      // controlling the start and end of a processing frame.
      absl::flat_hash_map<absl::string_view, std::vector<Node*>>
          ready_enters_per_frame;
      // Exit nodes shall all be from the same frame, as we process a frame at a
      // time. So, one vector is enough.
      std::vector<Node*> ready_exits;
      while (!ready.empty()) {
        Node* curr_node = ready.front();
        ready.pop_front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    			EqualFold(s1+"αβδ", s2+"ΑΒΔ")
    		}
    	})
    }
    
    var CountTests = []struct {
    	s, sep string
    	num    int
    }{
    	{"", "", 1},
    	{"", "notempty", 0},
    	{"notempty", "", 9},
    	{"smaller", "not smaller", 0},
    	{"12345678987654321", "6", 2},
    	{"611161116", "6", 3},
    	{"notequal", "NotEqual", 0},
    	{"equal", "equal", 1},
    	{"abc1231231123q", "123", 3},
    	{"11111", "11", 2},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top