Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for flist (0.06 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

        case AttrValue::kB:
          return attr_value.b() ? "true" : "false";
        case AttrValue::kList:
          if (attr_.full_type() == "list(string)" &&
              attr_value.list().s_size() == 0) {
            return "{}";
          }
          LOG(WARNING) << "Unimplemented: default value of list-typed attribute.";
          return "/* UNIMPLEMENTED */";
        case AttrValue::kShape:
        case AttrValue::kTensor:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/pgen.go

    	s.stkptrsize = types.RoundUp(s.stkptrsize, s.stkalign)
    }
    
    const maxStackSize = 1 << 30
    
    // Compile builds an SSA backend function,
    // uses it to generate a plist,
    // and flushes that plist to machine code.
    // worker indicates which of the backend workers is doing the processing.
    func Compile(fn *ir.Func, worker int, profile *pgoir.Profile) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen_util.cc

      return list.s_size() == 0 && list.i_size() == 0 && list.f_size() == 0 &&
             list.b_size() == 0 && list.type_size() == 0 &&
             list.shape_size() == 0 && list.tensor_size() == 0;
    }
    
    string ToCamelCase(StringPiece str) {
      string result;
      const char joiner = '_';
      size_t i = 0;
      bool cap = true;
      while (i < str.size()) {
        const char c = str[i++];
        if (c == '>') {
          cap = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/security_test.go

    	{"-F", "framework"},
    	{"-l", "."},
    	{"-l", "/etc/passwd"},
    	{"-l", "世界"},
    	{"-L", "framework"},
    	{"-framework", "Chocolate"},
    	{"-v"},
    	{"-Wl,-sectcreate,__TEXT,__info_plist,${SRCDIR}/Info.plist"},
    	{"-Wl,-framework", "-Wl,Chocolate"},
    	{"-Wl,-framework,Chocolate"},
    	{"-Wl,-unresolved-symbols=ignore-all"},
    	{"-Wl,-z,relro"},
    	{"-Wl,-z,relro,-z,now"},
    	{"-Wl,-z,now"},
    	{"-Wl,-z,noexecstack"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/runtime/netpoll.go

    //
    // func netpoll(delta int64) (gList, int32)
    //     Poll the network. If delta < 0, block indefinitely. If delta == 0,
    //     poll without blocking. If delta > 0, block for up to delta nanoseconds.
    //     Return a list of goroutines built by calling netpollready,
    //     and a delta to add to netpollWaiters when all goroutines are ready.
    //     This will never return an empty list with a non-zero delta.
    //
    // func netpollBreak()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    // popList takes all Gs in q and returns them as a gList.
    func (q *gQueue) popList() gList {
    	stack := gList{q.head}
    	*q = gQueue{}
    	return stack
    }
    
    // A gList is a list of Gs linked through g.schedlink. A G can only be
    // on one gQueue or gList at a time.
    type gList struct {
    	head guintptr
    }
    
    // empty reports whether l is empty.
    func (l *gList) empty() bool {
    	return l.head == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.plexusUtils)           { version { strictly("3.5.1"); because("transitive dependency of Maven modules to process POM metadata") }}
            api(libs.plist)                 { version { strictly("1.27") }}
            api(libs.servletApi)            { version { strictly("3.1.0") }}
            api(libs.slf4jApi)              { version { strictly(slf4jVersion) }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. gradle/verification-metadata.xml

                <pgp value="31BAE2E51D95E0F8AD9B7BCC40A3C4432BD7308C"/>
             </artifact>
          </component>
          <component group="com.googlecode.plist" name="dd-plist" version="1.27">
             <artifact name="dd-plist-1.27.jar">
                <pgp value="1CEED21A8E77F056ED2341A84410603103CE3AF4"/>
             </artifact>
          </component>
          <component group="com.gradleup" name="gr8-plugin" version="0.10">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  9. tensorflow/c/kernels.cc

        SINGLE_CASE(kTensor, TF_ATTR_TENSOR, -1);
    #undef SINGLE_CASE
    
        case tensorflow::AttrValue::kList:
          *list_size = 0;
          *total_size = -1;
    #define LIST_CASE(field, attr_type, ...)      \
      if (attr->list().field##_size() > 0) {      \
        *list_size = attr->list().field##_size(); \
        __VA_ARGS__;                              \
        break;                                    \
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    dl dd:last-child> :last-child {
    	margin-bottom: 0;
    }
    
    ol>li p,
    ul>li p,
    ul dd,
    ol dd,
    .olist .olist,
    .ulist .ulist,
    .ulist .olist,
    .olist .ulist {
    	margin-bottom: 0.625em;
    }
    
    ul.unstyled,
    ol.unnumbered,
    ul.checklist,
    ul.none {
    	list-style-type: none;
    }
    
    ul.unstyled,
    ol.unnumbered,
    ul.checklist {
    	margin-left: 0.625em;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top