Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 368 for Lists (0.04 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/test/ApplicationSpec.scala

    import com.google.common.collect.Lists
    import org.apache.commons.lang.StringUtils
    import org.junit.runner.RunWith
    import org.scalatest.junit.JUnitRunner
    import org.scalatestplus.play.PlaySpec
    import org.scalatestplus.play.guice.GuiceOneAppPerSuite
    import play.api.http.Status
    import play.api.test.FakeRequest
    import play.api.test.Helpers._
    
    @RunWith(classOf[JUnitRunner])
    class ApplicationSpec extends PlaySpec with GuiceOneAppPerSuite {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        }
        List<? extends Invokable<?, ?>> factories = Lists.reverse(getFactories(TypeToken.of(cls)));
        if (factories.isEmpty()) {
          return;
        }
        int numberOfParameters = factories.get(0).getParameters().size();
        List<ParameterNotInstantiableException> paramErrors = Lists.newArrayList();
        List<ParameterHasNoDistinctValueException> distinctValueErrors = Lists.newArrayList();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// This extension must only be used on lists and may have 3 possible values:
    	//
    	// 1) `atomic`: the list is treated as a single entity, like a scalar.
    	//      Atomic lists will be entirely replaced when updated. This extension
    	//      may be used on any type of list (struct, scalar, ...).
    	// 2) `set`:
    	//      Sets are lists that must not have multiple items with the same value. Each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        }
        List<? extends Invokable<?, ?>> factories = Lists.reverse(getFactories(TypeToken.of(cls)));
        if (factories.isEmpty()) {
          return;
        }
        int numberOfParameters = factories.get(0).getParameters().size();
        List<ParameterNotInstantiableException> paramErrors = Lists.newArrayList();
        List<ParameterHasNoDistinctValueException> distinctValueErrors = Lists.newArrayList();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/GuavaCollectionFactoryUsageTest.java

            noClasses()
                .should()
                .callMethod(com.google.common.collect.Lists.class, "newArrayList")
                .orShould()
                .callMethod(com.google.common.collect.Lists.class, "newCopyOnWriteArrayList")
                .orShould()
                .callMethod(com.google.common.collect.Lists.class, "newLinkedList")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/BooleanQuestionPromptEvent.java

    package org.gradle.internal.logging.events;
    
    import com.google.common.collect.Lists;
    import org.apache.commons.lang.BooleanUtils;
    import org.apache.commons.lang.StringUtils;
    
    import java.util.List;
    import java.util.Locale;
    
    public class BooleanQuestionPromptEvent extends PromptOutputEvent {
        private static final List<String> LENIENT_YES_NO_CHOICES = Lists.newArrayList("yes", "no", "y", "n");
        private final String question;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/LimitedDescription.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.util.internal;
    
    import com.google.common.collect.Lists;
    
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     * Discards old entries when current count is over the limit.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/YesNoQuestionPromptEvent.java

     */
    
    package org.gradle.internal.logging.events;
    
    import com.google.common.collect.Lists;
    import org.apache.commons.lang.BooleanUtils;
    import org.apache.commons.lang.StringUtils;
    
    import java.util.List;
    
    public class YesNoQuestionPromptEvent extends PromptOutputEvent {
        public static final List<String> YES_NO_CHOICES = Lists.newArrayList("yes", "no");
        private final String question;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/AbstractDaemonCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.compile.daemon;
    
    import com.google.common.collect.Lists;
    import org.gradle.api.tasks.WorkResult;
    import org.gradle.api.tasks.compile.BaseForkOptions;
    import org.gradle.internal.UncheckedException;
    import org.gradle.language.base.internal.compile.CompileSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

    import com.google.common.collect.ImmutableList
    import spock.lang.Specification
    
    class PersistentListTest extends Specification {
    
        def "empty lists are the same"() {
            expect:
            PersistentList.of() == PersistentList.of()
        }
    
        def "lists with elements #elements are the same"() {
            expect:
            listOf(elements) == listOf(elements)
    
            where:
            elements << [["a"], ["a", "b"]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top