- Sort Score
- Num 10 results
- Language All
Results 311 - 320 of 357 for 25 (0.05 seconds)
-
src/main/webapp/css/admin/bootstrap.min.css.map
!important;\n}\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;\n}\n\n.shadow-none {\n box-shadow: none !important;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.w-auto {\n width: auto !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.h-auto...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 639.3K bytes - Click Count (1) -
docs/uk/docs/tutorial/sql-databases.md
Далі створимо залежність `Annotated` - `SessionDep`, щоб спростити решту коду, який її використовуватиме. {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[25:30] hl[25:27,30] *} ### Створюйте таблиці під час запуску { #create-database-tables-on-startup } Ми створимо таблиці бази під час запуску застосунку.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 22.2K bytes - Click Count (0) -
api/go1.5.txt
pkg go/types, const UntypedFloat = 22 pkg go/types, const UntypedFloat BasicKind pkg go/types, const UntypedInt = 20 pkg go/types, const UntypedInt BasicKind pkg go/types, const UntypedNil = 25 pkg go/types, const UntypedNil BasicKind pkg go/types, const UntypedRune = 21 pkg go/types, const UntypedRune BasicKind pkg go/types, const UntypedString = 24 pkg go/types, const UntypedString BasicKind
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jul 30 21:14:09 GMT 2015 - 46.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
// MatchAllQueryBuilder should apply the boost value String json = result.toString().replaceAll("[\\s\\n]", ""); assertEquals("{\"match_all\":{\"boost\":2.5}}", json); } @Test public void test_execute_withNullContext() { // Test execute method with null context MatchAllDocsQuery query = new MatchAllDocsQuery(); float boost = 1.0f;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17K bytes - Click Count (0) -
src/main/resources/fess_config.properties
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
lib/fips140/v1.0.0-c2097c7c.zip
0x8000000000008080, 0x0000000080000001, 0x8000000080008008, } // keccakF1600Generic applies the Keccak permutation. func keccakF1600Generic(da *[200]byte) { var a *[25]uint64 if cpu.BigEndian { a = new([25]uint64) for i := range a { a[i] = byteorder.LEUint64(da[i*8:]) } defer func() { for i := range a { byteorder.LEPutUint64(da[i*8:], a[i]) } }() } else { a = (*[25]uint64)(unsafe.Pointer(da)) } // Implementation translated from Keccak-inplace.c // in the keccak reference code. var t, bc0, bc1, bc2, bc3, bc4, d0,...
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Sep 25 19:53:19 GMT 2025 - 642.7K bytes - Click Count (0) -
docs/tr/docs/tutorial/sql-databases.md
Ardından bu dependency’yi kullanacak kodun geri kalanını sadeleştirmek için `Annotated` ile `SessionDep` dependency’sini oluştururuz. {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[25:30] hl[25:27,30] *} ### Startup’ta Veritabanı Table’larını Oluşturma { #create-database-tables-on-startup } Uygulama başlarken veritabanı table’larını oluşturacağız.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 16.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java
byte[] data = new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08 }; // Update with partial data digest.update(data, 2, 4); // Only update with bytes at index 2-5 byte[] result = digest.digest(); assertNotNull(result); assertTrue(result.length > 0); } // Helper method to setup transport mocks
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.1K bytes - Click Count (0) -
docs/pt/docs/tutorial/sql-databases.md
Então, criamos uma dependência `Annotated` chamada `SessionDep` para simplificar o restante do código que usará essa dependência. {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[25:30] hl[25:27,30] *} ### Criar Tabelas de Banco de Dados na Inicialização { #create-database-tables-on-startup } Vamos criar as tabelas do banco de dados quando o aplicativo for iniciado.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 16.5K bytes - Click Count (0) -
cmd/signature-v4-utils_test.go
t.Fatalf("Expected the APIErrorCode to %d, but got %d", ErrUnsignedHeaders, errCode) } // case where the list of signed headers doesn't contain the host field. signedHeaders = signedHeaders[2:5] // expected to fail with `ErrUnsignedHeaders`. _, errCode = extractSignedHeaders(signedHeaders, r) if errCode != ErrUnsignedHeaders { t.Fatalf("Expected the APIErrorCode to %d, but got %d", ErrUnsignedHeaders, errCode)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Apr 09 14:28:39 GMT 2025 - 14.3K bytes - Click Count (0)