Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,796 for creat (0.06 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                }
    
                project.extensions.create('thing', Thing3)
    
                thing.extensions.create('thing2', Thing)
                thing.thing.extensions.create('thing2', Thing)
                thing.thing.thing2.extensions.create('thing2', Thing)
                thing.thing2.extensions.create('thing2', Thing)
    
                thing {
                    thing {
                        thing2 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

        @Override
        protected Set<String> create(String[] elements) {
          return ImmutableSet.copyOf(elements);
        }
      }
    
      public static class ImmutableSetUnsizedBuilderGenerator extends TestStringSetGenerator {
        @Override
        protected Set<String> create(String[] elements) {
          ImmutableSet.Builder<String> builder = ImmutableSet.builder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        new EqualsTester()
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 100, 0.01))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 100, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.01))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.unencodedCharsFunnel(), 100, 0.01))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                }
                it.create("foo") {
                    other += " create(foo)"
                }
                it.create("bar", specialItemClass) {
                    other += " create(bar)"
                }
            }
            realize()
    
            then:
            realizeChild("foo").other == "Named create(foo)"
            realizeChild("bar").other == "Named Special SpecialItem create(bar)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                    names.names.each { n ->
                        people.create { name = n }
                    }
                  }
    
                  @Mutate void addPeople(ModelSet<Person> people) {
                    people.create { name = "p3" }
                    people.create { name = "p4" }
                  }
                }
    
                apply type: Rules
    
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top