Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,512 for creat (0.05 sec)

  1. pkg/controlplane/controller/systemnamespaces/system_namespaces_controller_test.go

    			actions: [][]string{
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    			},
    		},
    		{
    			name:       "no system namespaces but others",
    			namespaces: []string{"foo", "bar"},
    			actions: [][]string{
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. architecture/networking/controllers.md

    * Typed clients (via generics) and more ergonomic APIs
    * Ability to make a _delayed_ client. This is used when making clients based on CRDs that may not exist.
      In general, Istio does not fail on missing CRDs and prefers to treat these as if there were just zero resources for that client.
      The `NewDelayedInformer` abstracts that entirely, offering the same API as normal `kclient.Client`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top