Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for typeList (0.24 sec)

  1. src/cmd/compile/internal/typebits/typebits.go

    		if off&int64(types.PtrSize-1) != 0 {
    			base.Fatalf("typebits.Set: invalid alignment, %v", t)
    		}
    		bv.Set(int32(off / int64(types.PtrSize))) // pointer
    
    	case types.TSTRING:
    		// struct { byte *str; intgo len; }
    		if off&int64(types.PtrSize-1) != 0 {
    			base.Fatalf("typebits.Set: invalid alignment, %v", t)
    		}
    		bv.Set(int32(off / int64(types.PtrSize))) //pointer in first slot
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BasicDerAdapter.kt

        }
    
        val result =
          reader.read(name) {
            codec.decode(reader)
          }
    
        if (typeHint) {
          reader.typeHint = result
        }
    
        return result
      }
    
      override fun toDer(
        writer: DerWriter,
        value: T,
      ) {
        if (typeHint) {
          writer.typeHint = value
        }
    
        if (isOptional && value == defaultValue) {
          // Nothing to write!
          return
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. 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)
  8. 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 (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

            )
          },
        )
    
      /** The type of the parameters depends on the algorithm that precedes it. */
      private val algorithmParameters: DerAdapter<Any?> =
        Adapters.usingTypeHint { typeHint ->
          when (typeHint) {
            // This type is pretty strange. The spec says that for certain algorithms we must encode null
            // when it is present, and for others we must omit it!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Term).Type", Method, 18},
    		{"(*Tuple).At", Method, 5},
    		{"(*Tuple).Len", Method, 5},
    		{"(*Tuple).String", Method, 5},
    		{"(*Tuple).Underlying", Method, 5},
    		{"(*TypeList).At", Method, 18},
    		{"(*TypeList).Len", Method, 18},
    		{"(*TypeName).Exported", Method, 5},
    		{"(*TypeName).Id", Method, 5},
    		{"(*TypeName).IsAlias", Method, 9},
    		{"(*TypeName).Name", Method, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top