- Sort Score
- Num 10 results
- Language All
Results 931 - 940 of 2,486 for tape (0.56 seconds)
-
android/guava/src/com/google/common/graph/Traverser.java
* objects into a non-recursive form, you can use {@code forGraph()}. * </ul> * * @author Jens Nyman * @param <N> Node parameter type * @since 23.1 */ @DoNotMock( "Call forGraph or forTree, passing a lambda or a Graph with the desired edges (built with" + " GraphBuilder)") public abstract class Traverser<N> {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 01:10:31 GMT 2026 - 19.3K bytes - Click Count (0) -
docs/tr/docs/tutorial/bigger-applications.md
│ │ ├── items.py │ │ └── users.py │ └── internal │ ├── __init__.py │ └── admin.py ``` /// tip | İpucu Birden fazla `__init__.py` dosyası var: her dizinde veya alt dizinde bir tane. Bu sayede bir dosyadaki kodu diğerine import edebilirsiniz. Örneğin `app/main.py` içinde şöyle bir satırınız olabilir: ``` from app.routers import items ``` ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 20.3K bytes - Click Count (0) -
docs_src/graphql_/tutorial001_py310.py
import strawberry from fastapi import FastAPI from strawberry.fastapi import GraphQLRouter @strawberry.type class User: name: str age: int @strawberry.type class Query: @strawberry.field def user(self) -> User: return User(name="Patrick", age=100) schema = strawberry.Schema(query=Query) graphql_app = GraphQLRouter(schema) app = FastAPI()Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 424 bytes - Click Count (0) -
docs/en/docs/tutorial/query-params.md
/// check Also notice that **FastAPI** is smart enough to notice that the path parameter `item_id` is a path parameter and `q` is not, so, it's a query parameter. /// ## Query parameter type conversion { #query-parameter-type-conversion } You can also declare `bool` types, and they will be converted: {* ../../docs_src/query_params/tutorial003_py310.py hl[7] *} In this case, if you go to: ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.5K bytes - Click Count (0) -
internal/bucket/bandwidth/monitor.go
import ( "context" "slices" "sync" "time" "golang.org/x/time/rate" ) //msgp:ignore bucketThrottle Monitor type bucketThrottle struct { *rate.Limiter NodeBandwidthPerSec int64 } // Monitor holds the state of the global bucket monitor type Monitor struct { tlock sync.RWMutex // mutex for bucket throttling mlock sync.RWMutex // mutex for bucket measurement
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 6K bytes - Click Count (0) -
internal/etag/reader.go
package etag import ( "context" "crypto/md5" "fmt" "hash" "io" ) // Tagger is the interface that wraps the basic ETag method. type Tagger interface { ETag() ETag } type wrapReader struct { io.Reader Tagger } var _ Tagger = wrapReader{} // compiler check // ETag returns the ETag of the underlying Tagger. func (r wrapReader) ETag() ETag {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Mar 30 00:56:02 GMT 2025 - 4.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java
} } @Test public void test_genericTypeSafety_consistencyBetweenConstructorAndGetter() { // Verify consistency between constructor parameter type and getter return type // This test ensures the generic type change is consistent throughout the class // Test with RootAction.class Class<? extends RootAction> inputClass1 = RootAction.class;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0) -
docs/en/docs/tutorial/dependencies/classes-as-dependencies.md
**FastAPI** calls the `CommonQueryParams` class. This creates an "instance" of that class and the instance will be passed as the parameter `commons` to your function. ## Type annotation vs `Depends` { #type-annotation-vs-depends } Notice how we write `CommonQueryParams` twice in the above code: //// tab | Python 3.10+ ```Python commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:32:12 GMT 2026 - 6.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/testfixtures/TestFixturesPlugin.java
} @SuppressWarnings("unchecked") private Class<? extends DefaultTask> getTaskClass(String type) { Class<?> aClass; try { aClass = Class.forName(type); if (DefaultTask.class.isAssignableFrom(aClass) == false) { throw new IllegalArgumentException("Not a task type: " + type); } } catch (ClassNotFoundException e) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 29 15:07:50 GMT 2021 - 10.7K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/design/admin_design_edit.jsp
</div> </div> <div class="card-footer"> <button type="submit" class="btn btn-default" name="back" value="<la:message key="labels.design_button_back" />">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 3.7K bytes - Click Count (0)