Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 107 for typelink (0.19 sec)

  1. src/go/printer/testdata/parser.go

    	} else {
    		p.expectSemi()
    	}
    
    	return &ast.IfStmt{pos, s, x, body, else_}
    }
    
    func (p *parser) parseTypeList() (list []ast.Expr) {
    	if p.trace {
    		defer un(trace(p, "TypeList"))
    	}
    
    	list = append(list, p.parseType())
    	for p.tok == token.COMMA {
    		p.next()
    		list = append(list, p.parseType())
    	}
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

          T42, T43, T44, T45, T46, T47, T48, T49> type;
    };
    
    // The TypeList template makes it possible to use either a single type
    // or a Types<...> list in TYPED_TEST_CASE() and
    // INSTANTIATE_TYPED_TEST_CASE_P().
    
    template <typename T>
    struct TypeList {
      typedef Types1<T> type;
    };
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

          T42, T43, T44, T45, T46, T47, T48, T49> type;
    };
    
    // The TypeList template makes it possible to use either a single type
    // or a Types<...> list in TYPED_TEST_CASE() and
    // INSTANTIATE_TYPED_TEST_CASE_P().
    
    template <typename T>
    struct TypeList {
      typedef Types1<T> type;
    };
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    		}
    
    	case C_LEXT:
    		if b == C_SEXT {
    			return true
    		}
    
    	case C_LAUTO:
    		if b == C_SAUTO {
    			return true
    		}
    
    	case C_REG:
    		if b == C_ZCON {
    			return r0iszero != 0 /*TypeKind(100016)*/
    		}
    
    	case C_LOREG:
    		if b == C_ZOREG || b == C_SOREG {
    			return true
    		}
    
    	case C_SOREG:
    		if b == C_ZOREG {
    			return true
    		}
    	}
    
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_DataType value;
      TF_OperationGetAttrType(oper, "v", &value, s_);
      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_EQ(TF_COMPLEX128, value);
    }
    
    TEST_F(CApiAttributesTest, TypeList) {
      const TF_DataType list[] = {TF_FLOAT, TF_DOUBLE, TF_HALF, TF_COMPLEX128};
      const size_t list_size = TF_ARRAYSIZE(list);
    
      auto desc = init("list(type)");
      TF_SetAttrTypeList(desc, "v", list, list_size);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	case 3: /* mov $soreg/16con, r ==> addi/ori $i,reg',r */
    		d := c.vregoff(&p.From)
    
    		v := int32(d)
    		r := int(p.From.Reg)
    
    		if r0iszero != 0 /*TypeKind(100016)*/ && p.To.Reg == 0 && (r != 0 || v != 0) {
    			c.ctxt.Diag("literal operation on R0\n%v", p)
    		}
    		if int64(int16(d)) == d {
    			// MOVD $int16, Ry  or  MOVD $offset(Rx), Ry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg archive/tar, const TypeChar ideal-char
    pkg archive/tar, const TypeCont ideal-char
    pkg archive/tar, const TypeDir ideal-char
    pkg archive/tar, const TypeFifo ideal-char
    pkg archive/tar, const TypeLink ideal-char
    pkg archive/tar, const TypeReg ideal-char
    pkg archive/tar, const TypeRegA ideal-char
    pkg archive/tar, const TypeSymlink ideal-char
    pkg archive/tar, const TypeXGlobalHeader ideal-char
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    				t.Errorf("lost x[%d][%d] = %d, want %d", i, j, k, i*n+j)
    			}
    		}
    	}
    }
    
    func TestTypelinksSorted(t *testing.T) {
    	var last string
    	for i, n := range TypeLinks() {
    		if n < last {
    			t.Errorf("typelinks not sorted: %q [%d] > %q [%d]", last, i-1, n, i)
    		}
    		last = n
    	}
    }
    
    func TestFuncOf(t *testing.T) {
    	// check construction and use of type not in binary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. doc/go_spec.html

    from existing types.
    </p>
    
    <pre class="ebnf">
    Type      = TypeName [ TypeArgs ] | TypeLit | "(" Type ")" .
    TypeName  = identifier | QualifiedIdent .
    TypeArgs  = "[" TypeList [ "," ] "]" .
    TypeList  = Type { "," Type } .
    TypeLit   = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
                SliceType | MapType | ChannelType .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  10. doc/go1.17_spec.html

    TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
    TypeCaseClause  = TypeSwitchCase ":" StatementList .
    TypeSwitchCase  = "case" TypeList | "default" .
    TypeList        = Type { "," Type } .
    </pre>
    
    <p>
    The TypeSwitchGuard may include a
    <a href="#Short_variable_declarations">short variable declaration</a>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top