Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,340 for CREATE (0.35 sec)

  1. guava-tests/test/com/google/common/collect/ImmutableMultisetFloodingTest.java

          public ImmutableMultiset<Object> create(List<?> keys) {
            return ImmutableMultiset.copyOf(keys);
          }
        },
        COPY_OF_ITERATOR {
          @Override
          public ImmutableMultiset<Object> create(List<?> keys) {
            return ImmutableMultiset.copyOf(keys.iterator());
          }
        },
        BUILDER_ADD_ENTRY_BY_ENTRY {
          @Override
          public ImmutableMultiset<Object> create(List<?> keys) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 21:01:39 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskReplacementIntegrationTest.groovy

            "using replace()"         | 'replace("foo", Second)'
            "using create(overwrite)" | 'create(name: "foo", type: Second, overwrite: true)'
        }
    
        def "throws exception when replacing an unrealized task a second time when #description"() {
            buildFile << """
                tasks.register("foo", First)
                tasks.replace("foo", Second)  // will eagerly create the task
                tasks.${api}  // will print deprecation warning
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtDiagnosticConverter.kt

        fun KaFirSession.create(diagnostic: KtSimpleDiagnostic): KaFirDiagnostic<*>
    }
    
    internal fun interface KaFirDiagnostic1Creator<A> : KaFirDiagnosticCreator {
        fun KaFirSession.create(diagnostic: KtDiagnosticWithParameters1<A>): KaFirDiagnostic<*>
    }
    
    internal fun interface KaFirDiagnostic2Creator<A, B> : KaFirDiagnosticCreator {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

                on { maybeCreate("alice", DomainObjectBase.Foo::class.java) } doReturn alice
                on { create(eq("bob"), eq(DomainObjectBase.Bar::class.java), any<Action<DomainObjectBase.Bar>>()) } doReturn bob
                on { create("john") } doReturn default
                on { create("john", DomainObjectBase.Default::class.java) } doReturn default
                onNamedWithAction("marty", DomainObjectBase.Foo::class, martyProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelDslCreationIntegrationTest.groovy

        }
    
        def "can create elements without mutating"() {
            when:
            buildScript '''
                @Managed
                interface Thing {
                    String getName()
                    void setName(String name)
                }
    
                model {
                    thing1(Thing)
                    tasks {
                        create("echo") {
                            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/clusterrole.yaml

    rules:
      - apiGroups: ["apps"]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "deployments" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "services" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "serviceaccounts"]
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

    rules:
      - apiGroups: ["apps"]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "deployments" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "services" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "serviceaccounts"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/eventbus/SubscriberTest.java

        Method concat = String.class.getMethod("concat", String.class);
        new EqualsTester()
            .addEqualityGroup(
                Subscriber.create(bus, "foo", charAt), Subscriber.create(bus, "foo", charAt))
            .addEqualityGroup(Subscriber.create(bus, "bar", charAt))
            .addEqualityGroup(Subscriber.create(bus, "foo", concat))
            .testEquals();
      }
    
      private Method getTestSubscriberMethod(String name) {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyFactory.java

         */
        ExternalModuleDependency create(CharSequence dependencyNotation);
    
        /**
         * Create an {@link ExternalModuleDependency} from a series of strings.
         *
         * @param group the group (optional)
         * @param name the name
         * @param version the version (optional)
         * @return the new dependency
         */
        ExternalModuleDependency create(@Nullable String group, String name, @Nullable String version);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 06 21:43:58 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectUndecoratedTest.groovy

            expect:
            generator.generate(Bean).generatedClass == Bean
        }
    
        def "can create instance of final class when a subclass is not required"() {
            expect:
            create(FinalBean) != null
        }
    
        def "can create instance of private class when a subclass is not required"() {
            expect:
            create(PrivateBean) != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top