Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for RegionID (0.2 sec)

  1. tests/associations_test.go

    		gorm.Model
    		Name string
    	}
    	type Region struct {
    		gorm.Model
    		Name          string
    		Organizations []Organization `gorm:"many2many:region_orgs;"`
    	}
    	type RegionOrg struct {
    		RegionId       uint
    		OrganizationId uint
    		Empty          myType
    	}
    	if err := DB.SetupJoinTable(&Region{}, "Organizations", &RegionOrg{}); err != nil {
    		t.Fatalf("Failed to set up join table, got error: %s", err)
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    }
    
    type likelyLangScript struct {
    	lang   uint16
    	script uint16
    	flags  uint8
    }
    
    // likelyRegion is a lookup table, indexed by regionID, for the most likely
    // languages and scripts given incomplete information. If more entries exist
    // for a given regionID, lang and script are the index and size respectively
    // of the list in likelyRegionList.
    // TODO: exclude containers and user-definable regions from the list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
Back to top