Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 643 for type_ (0.14 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	{as: AMOVFL, a1: C_REG, a6: C_CREG, type_: 69, size: 4},
    	{as: AMOVFL, a1: C_REG, a6: C_32CON, type_: 69, size: 4},
    
    	{as: ASYSCALL, type_: 5, size: 4},
    	{as: ASYSCALL, a1: C_REG, type_: 77, size: 12},
    	{as: ASYSCALL, a1: C_U15CON, type_: 77, size: 12},
    	{as: ABEQ, a6: C_BRA, type_: 16, size: 4},
    	{as: ABEQ, a1: C_CREG, a6: C_BRA, type_: 16, size: 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/gen/arithConstGen.go

    		`//go:noinline
    func {{.Name}}_{{.Type_}}_{{.FNumber}}(a {{.Type_}}) {{.Type_}} { return a {{.Symbol}} {{.Number}} }
    `))
    	fncCnst2 := template.Must(template.New("fnc").Parse(
    		`//go:noinline
    func {{.Name}}_{{.FNumber}}_{{.Type_}}(a {{.Type_}}) {{.Type_}} { return {{.Number}} {{.Symbol}} a }
    `))
    
    	type fncData struct {
    		Name, Type_, Symbol, FNumber, Number string
    	}
    
    	for _, s := range szs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/value.h

      void* capsule() const { return get<impl::Capsule>().get(); }
    
      /// Retrieves type of TaggedValue.
      Type type() const { return type_; }
    
      /// @brief Implements equality operator for TaggedValue.
      bool operator==(const TaggedValue& o) const {
        if (type_ != o.type_) return false;
        switch (type_) {
          case LIST:
            return data_.list == o.data_.list;
            break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      bool passed() const { return type_ == kSuccess; }
    
      // Returns true iff the test part failed.
      bool failed() const { return type_ != kSuccess; }
    
      // Returns true iff the test part non-fatally failed.
      bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
    
      // Returns true iff the test part fatally failed.
      bool fatally_failed() const { return type_ == kFatalFailure; }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      bool passed() const { return type_ == kSuccess; }
    
      // Returns true iff the test part failed.
      bool failed() const { return type_ != kSuccess; }
    
      // Returns true iff the test part non-fatally failed.
      bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
    
      // Returns true iff the test part fatally failed.
      bool fatally_failed() const { return type_ == kFatalFailure; }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadmacho/ldmacho.go

    		machsym := &symtab.sym[i]
    		if machsym.type_&N_STAB != 0 {
    			continue
    		}
    
    		// TODO: check sym->type against outer->type.
    		name := machsym.name
    
    		if name[0] == '_' && name[1] != '\x00' {
    			name = name[1:]
    		}
    		v := 0
    		if machsym.type_&N_EXT == 0 {
    			v = localSymVersion
    		}
    		s := l.LookupOrCreateCgoExport(name, v)
    		if machsym.type_&N_EXT == 0 {
    			l.SetAttrDuplicateOK(s, true)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  7. fastapi/utils.py

        new_field = create_response_field(name=field.name, type_=use_type)
        new_field.has_alias = field.has_alias  # type: ignore[attr-defined]
        new_field.alias = field.alias  # type: ignore[misc]
        new_field.class_validators = field.class_validators  # type: ignore[attr-defined]
        new_field.default = field.default  # type: ignore[misc]
        new_field.required = field.required  # type: ignore[misc]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadelf/ldelf.go

    		}
    		symbols[i] = elfsym.sym
    		if elfsym.type_ != elf.STT_FUNC && elfsym.type_ != elf.STT_OBJECT && elfsym.type_ != elf.STT_NOTYPE && elfsym.type_ != elf.STT_COMMON {
    			continue
    		}
    		if elfsym.shndx == elf.SHN_COMMON || elfsym.type_ == elf.STT_COMMON {
    			sb := l.MakeSymbolUpdater(elfsym.sym)
    			if uint64(sb.Size()) < elfsym.size {
    				sb.SetSize(int64(elfsym.size))
    			}
    			if sb.Type() == 0 || sb.Type() == sym.SXREF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. fastapi/_compat.py

            field_info = field.field_info
            if not (
                field.shape == SHAPE_SINGLETON  # type: ignore[attr-defined]
                and not lenient_issubclass(field.type_, BaseModel)
                and not lenient_issubclass(field.type_, dict)
                and not field_annotation_is_sequence(field.type_)
                and not is_dataclass(field.type_)
                and not isinstance(field_info, params.Body)
            ):
                return False
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. fastapi/openapi/models.py

    
    class SecurityBase(BaseModelWithConfig):
        type_: SecuritySchemeType = Field(alias="type")
        description: Optional[str] = None
    
    
    class APIKeyIn(Enum):
        query = "query"
        header = "header"
        cookie = "cookie"
    
    
    class APIKey(SecurityBase):
        type_: SecuritySchemeType = Field(default=SecuritySchemeType.apiKey, alias="type")
        in_: APIKeyIn = Field(alias="in")
        name: str
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top