- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 249 for iBooks (0.04 sec)
-
android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
private final List<Thread> hooks = Lists.newArrayList(); @Override synchronized void addShutdownHook(Thread hook) { hooks.add(hook); } synchronized void shutdown() throws InterruptedException { for (Thread hook : hooks) { hook.start(); } for (Thread hook : hooks) { hook.join(); } } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 28.1K bytes - Viewed (0) -
docs/ko/docs/project-generation.md
- ๐ [Pydantic](https://docs.pydantic.dev): FastAPI์ ์ํด ์ฌ์ฉ๋๋, ๋ฐ์ดํฐ ๊ฒ์ฆ๊ณผ ์ค์ ๊ด๋ฆฌ. - ๐พ [PostgreSQL](https://www.postgresql.org): SQL ๋ฐ์ดํฐ๋ฒ ์ด์ค. - ๐ [React](https://react.dev): ํ๋ก ํธ์๋. - ๐ TypeScript, hooks, [Vite](https://vitejs.dev) ๋ฐ ๊ธฐํ ํ๋์ ์ธ ํ๋ก ํธ์๋ ์คํ์ ์ฌ์ฉ. - ๐จ [Chakra UI](https://chakra-ui.com): ํ๋ก ํธ์๋ ์ปดํฌ๋ํธ. - ๐ค ์๋์ผ๋ก ์์ฑ๋ ํ๋ก ํธ์๋ ํด๋ผ์ด์ธํธ. - ๐งช E2E ํ ์คํธ๋ฅผ ์ํ [Playwright](https://playwright.dev). - ๐ฆ ๋คํฌ ๋ชจ๋ ์ง์.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:16:34 UTC 2024 - 2.1K bytes - Viewed (0) -
internal/config/dns/dns_path.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package dns import ( "path" "strings" "github.com/miekg/dns" ) // msgPath converts a domainname to an etcd path. If s looks like service.staging.skydns.local., // the resulting key will be /skydns/local/skydns/staging/service . func msgPath(s, prefix string) string { l := dns.SplitDomainName(s) for i, j := 0, len(l)-1; i < j; i, j = i+1, j-1 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 26 15:03:08 UTC 2024 - 1.9K bytes - Viewed (0) -
misc/go_android_exec/exitcode_test.go
// We should get a no exit code error if err == nil || !wantErr.MatchString(err.Error()) { t.Errorf("want error matching %s, got %s", wantErr, err) } // And it should flush all output (even if it looks // like we may be getting an exit code) if got := out.String(); text != got { t.Errorf("want full output %q, got %q", text, got) } } wantErr = regexp.MustCompile("^no exit code") check("abc")
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed May 03 14:54:58 UTC 2023 - 2.1K bytes - Viewed (0) -
internal/s3select/sql/jsonpath_test.go
result = append(result, parsedVal.Value) } if err := dec.Err(); err != nil { return nil, err } return result, nil } func TestJsonpathEval(t *testing.T) { f, err := os.Open(filepath.Join("jsondata", "books.json")) if err != nil { t.Fatal(err) } b, err := io.ReadAll(f) if err != nil { t.Fatal(err) } p := participle.MustBuild( &JSONPath{}, participle.Lexer(sqlLexer),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 2.8K bytes - Viewed (0) -
callbacks/create.go
package callbacks import ( "fmt" "reflect" "strings" "gorm.io/gorm" "gorm.io/gorm/clause" "gorm.io/gorm/schema" "gorm.io/gorm/utils" ) // BeforeCreate before create hooks func BeforeCreate(db *gorm.DB) { if db.Error == nil && db.Statement.Schema != nil && !db.Statement.SkipHooks && (db.Statement.Schema.BeforeSave || db.Statement.Schema.BeforeCreate) { callMethod(db, func(value interface{}, tx *gorm.DB) (called bool) {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Apr 08 03:29:55 UTC 2024 - 12.5K bytes - Viewed (0) -
docs/zh/docs/project-generation.md
- ๐ [Pydantic](https://docs.pydantic.dev) FastAPI็ไพ่ต้กนไนไธ๏ผ็จไบๆฐๆฎ้ช่ฏๅ้ ็ฝฎ็ฎก็ใ - ๐พ [PostgreSQL](https://www.postgresql.org) ไฝไธบSQLๆฐๆฎๅบใ - ๐ [React](https://react.dev) ็จไบๅ็ซฏใ - ๐ ไฝฟ็จไบTypeScriptใhooksใ[Vite](https://vitejs.dev)ๅๅ ถไปไธไบ็ฐไปฃๅ็ๅ็ซฏๆๆฏๆ ใ - ๐จ [Chakra UI](https://chakra-ui.com) ็จไบๅ็ซฏ็ปไปถใ - ๐ค ไธไธช่ชๅจๅ็ๆ็ๅ็ซฏๅฎขๆท็ซฏใ - ๐งช [Playwright](https://playwright.dev)็จไบ็ซฏๅฐ็ซฏๆต่ฏใ - ๐ฆ ๆฏๆๆ้ปไธป้ข๏ผDark mode๏ผใ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:16:34 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ImmutableTypeToInstanceMapTest.java
suite.addTest( MapTestSuiteBuilder.using( new TestTypeToInstanceMapGenerator() { // Other tests will verify what real, warning-free usage looks like // but here we have to do some serious fudging @Override @SuppressWarnings({"unchecked", "rawtypes"})
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:15:24 UTC 2024 - 6.8K bytes - Viewed (0) -
CONTRIBUTING.md
rare occasion we may reject it. **3. Review** - For a valid PR, reviewer (person familiar with the code/functionality) checks if the PR looks good or needs additional changes. - If all looks good, the reviewer will approve the PR. - If a change is needed, the contributor is requested to make the suggested change. - You make the change and submit it for the review again.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 06:20:12 UTC 2024 - 15.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/RemoteRepository.java
* </ol> * <p>By understanding and properly configuring repositories, developers can control where Maven looks for dependencies, manage access to proprietary artifacts, and optimize the build process to ensure consistency and reliability across projects. * </p> * * * @since 4.0.0 * @see Repository * @see LocalRepository
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.3K bytes - Viewed (0)