Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for as_list (0.14 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                return Collections.emptyList();
            }
            OperatingSystem os = OperatingSystem.current();
            if (os.isUnix()) {
                return Arrays.asList("nice", "-n", "10");
            } else if (os.isWindows()) {
                return Arrays.asList("cmd.exe", "/d", "/c", "start", "\"Gradle build daemon\"", "/b", "/belownormal", "/wait");
            } else {
                return Collections.emptyList();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSet.java

      abstract static class CachingAsList<E> extends ImmutableSet<E> {
        @LazyInit @RetainedWith @CheckForNull private transient ImmutableList<E> asList;
    
        @Override
        public ImmutableList<E> asList() {
          ImmutableList<E> result = asList;
          if (result == null) {
            return asList = createAsList();
          } else {
            return result;
          }
        }
    
        ImmutableList<E> createAsList() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

            stimuli[level] = stimulus;
            recurse(level + 1);
          }
        }
      }
    
      private void compareResultsForThisListOfStimuli() {
        int removes = Collections.frequency(Arrays.asList(stimuli), remove);
        if ((!features.contains(IteratorFeature.SUPPORTS_REMOVE) && removes > 1)
            || (stimuli.length >= 5 && removes > 2)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

            if (!getDistribution().isSupportsSpacesInGradleAndJavaOpts()) {
                Map<String, String> environmentVars = buildInvocation().environmentVars;
                for (String envVarName : Arrays.asList("JAVA_OPTS", "GRADLE_OPTS")) {
                    String envVarValue = environmentVars.get(envVarName);
                    if (envVarValue == null) {
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

    import java.lang.reflect.Modifier;
    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    import java.util.List;
    
    import static com.google.common.collect.Iterables.transform;
    import static java.util.Arrays.asList;
    
    /**
     * Provides a way to preserve high-fidelity {@link Type} information on generic types.
     *
     * Capture a generic type with an anonymous subclass. For example: <pre>   {@code
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        public TestNGOptions includeGroups(String... includeGroups) {
            this.includeGroups.addAll(Arrays.asList(includeGroups));
            return this;
        }
    
        public TestNGOptions excludeGroups(String... excludeGroups) {
            this.excludeGroups.addAll(Arrays.asList(excludeGroups));
            return this;
        }
    
        public TestNGOptions useDefaultListeners() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSet.java

      @Override
      public abstract UnmodifiableIterator<E> iterator();
    
      @LazyInit @RetainedWith @CheckForNull private transient ImmutableList<E> asList;
    
      @Override
      public ImmutableList<E> asList() {
        ImmutableList<E> result = asList;
        return (result == null) ? asList = createAsList() : result;
      }
    
      ImmutableList<E> createAsList() {
        return ImmutableList.asImmutableList(toArray());
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

            this.versionParser = versionParser;
            return this;
        }
    
        protected ModelProcessor newModelProcessor() {
            return new DefaultModelProcessor(Arrays.asList(newModelParsers()), newModelLocator(), newModelReader());
        }
    
        protected ModelParser[] newModelParsers() {
            return new ModelParser[0];
        }
    
        protected ModelLocator newModelLocator() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

       * ordering.
       *
       * @throws NullPointerException if any element is null
       */
      public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> of(E e1, E e2) {
        return copyOf(Ordering.natural(), Arrays.asList(e1, e2));
      }
    
      /**
       * Returns an immutable sorted multiset containing the given elements sorted by their natural
       * ordering.
       *
       * @throws NullPointerException if any element is null
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

         * "expected in provided scope" type of checks.
         */
        static final Collection<String> EXPECTED_PROVIDED_SCOPE_EXCLUSIONS_GA =
                Collections.unmodifiableCollection(Arrays.asList(
                        "org.apache.maven:maven-archiver", "org.apache.maven:maven-jxr", "org.apache.maven:plexus-utils"));
    
        private static final String ISSUES_KEY = DefaultPluginValidationManager.class.getName() + ".issues";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top