Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,340 for CREATE (0.23 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

            return getDependencyFactory().create(getProject().project(projectPath));
        }
    
        /**
         * Returns the current project as a {@link ProjectDependency}.
         *
         * @return the current project as a dependency
         */
        default ProjectDependency project() {
            return getDependencyFactory().create(getProject());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/async-sql-encode-databases.md

    Here, this section would run directly, right before starting your **FastAPI** application.
    
    * Create an `engine`.
    * Create all the tables from the `metadata` object.
    
    ```Python hl_lines="25-28"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    ## Create models
    
    Create Pydantic models for:
    
    * Notes to be created (`NoteIn`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

        SettableFuture<String> future = SettableFuture.create();
        SettableFuture<String> nested = SettableFuture.create();
        assertTrue(future.setFuture(nested));
        // Later attempts to set the future should return false.
        assertFalse(future.set("x"));
        assertFalse(future.setException(new Exception("bar")));
        assertFalse(future.setFuture(SettableFuture.<String>create()));
        // Check that the future has been set properly.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/chain_test.go

    		accept    bool
    		calls     map[string]bool
    	}{
    		{
    			name:      "all accept",
    			ns:        sysns,
    			operation: Create,
    			options:   &metav1.CreateOptions{},
    			chain: []Interface{
    				makeHandler("a", true, Update, Delete, Create),
    				makeHandler("b", true, Delete, Create),
    				makeHandler("c", true, Create),
    			},
    			calls:  map[string]bool{"a": true, "b": true, "c": true},
    			accept: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactory.java

         */
        @Nonnull
        default ArtifactCoordinate create(@Nonnull Session session, @Nonnull String coordinateString) {
            return create(ArtifactCoordinateFactoryRequest.build(session, coordinateString));
        }
    
        @Nonnull
        default ArtifactCoordinate create(
                @Nonnull Session session, String groupId, String artifactId, String version, String extension) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 10:30:20 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. api/discovery/apis__resource.k8s.io__v1alpha2.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskCreationIntegrationTest.groovy

                tasks.create("task2", SomeTask) {
                    println "Configure ${path}"
                    dependsOn task1
                }
                tasks.create("other")
            '''
    
            when:
            run("other")
    
            then:
            outputContains("Create :task1")
            outputContains("Configure :task1")
            outputContains("Create :task2")
            outputContains("Configure :task2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjectsTest.groovy

            [child1, child2, child3].each {
                it.configurations.create "testRuntime"
                it.configurations.create "conf"
                it.tasks.create "buildDependents"
                it.tasks.create "someTask"
            }
    
            when: dep.visitDependencies(context)
    
            then:
            4 * context.getTask() >> child1.tasks["buildDependents"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/AbstractEclipseIntegrationSpec.groovy

            EclipseClasspathFixture.create(testDirectory, executer.gradleUserHomeDir)
        }
    
        protected EclipseClasspathFixture classpath(String project) {
            EclipseClasspathFixture.create(testDirectory.file(project), executer.gradleUserHomeDir)
        }
    
        protected EclipseWtpComponentFixture getWtpComponent() {
            EclipseWtpComponentFixture.create(testDirectory)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.pyi

        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: list[Value]) -> Operation: ...
    
    class Tf_AddV2Op:
        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: Value, arg2: Value) -> Operation: ...
    
    class Tf_AnyOp:
        def __init__(self, *args, **kwargs) -> None: ...
        def create(self, arg0: Location, arg1: Value, arg2: Value, arg3: bool) -> Operation: ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top