Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 600 for list1 (0.03 sec)

  1. src/test/resources/osdd/osdd.xml

    <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
      <ShortName>Fess</ShortName>
      <Description>Full Text Search for Your Documents.</Description>
      <Tags>Full Text Search</Tags>
      <Contact>fess-user@lists.sourceforge.jp</Contact>
      <SearchForm>http://localhost:8080/fess/</SearchForm>
      <Url type="text/html" template="http://localhost:8080/fess/search?q={searchTerms}"/>
      <InputEncoding>UTF-8</InputEncoding>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 08 05:17:08 UTC 2024
    - 535 bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/CacheBuilderFactory.java

        return Iterables.transform(
            cartesianProduct,
            new Function<List<Optional<?>>, List<Object>>() {
              @Override
              public List<Object> apply(List<Optional<?>> objs) {
                return Lists.transform(objs, OPTIONAL_TO_NULLABLE);
              }
            });
      }
    
      private CacheBuilder<Object, Object> createCacheBuilder(
          @Nullable Integer concurrencyLevel,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/coverage.go

    // services. As lists may be generated on the fly, it is recommended that users
    // of a Coverage cache the results.
    type Coverage interface {
    	// Tags returns the list of supported tags.
    	Tags() []Tag
    
    	// BaseLanguages returns the list of supported base languages.
    	BaseLanguages() []Base
    
    	// Scripts returns the list of supported scripts.
    	Scripts() []Script
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. test/typeparam/typelist.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file tests type lists & constraints with core types.
    
    // Note: This test has been adjusted to use the new
    //       type set notation rather than type lists.
    
    package p
    
    // Assignability of an unnamed pointer type to a type parameter that
    // has a matching underlying type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/ide-native/src/main/java/org/gradle/api/internal/PropertyListTransformer.java

         * Adds an action to be executed when property lists are transformed.
         * @param action the action to add
         */
        public void addAction(Action<? super T> action) {
            actions.add(action);
        }
    
        /**
         * Transforms a property list object. This will modify the
         * original.
         * @param original the property list to transform
         * @return the transformed property list
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SingletonImmutableList.java

      // serialized.
      E element;
    
      SingletonImmutableList(E element) {
        this.delegate = singletonList(checkNotNull(element));
        this.element = element;
      }
    
      @Override
      List<E> delegateList() {
        return delegate;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java

        // ----------------------------------------------------------------------
    
        /**
         * How the test project is set up:
         *
         * 1. dependencyManagement lists dependencies on a &amp; b,
         *    with an exclusion on c in b.
         * 2. the child project lists a dependency on project a only
         * 3. a depends on b (which is transitive to the child project),
         *    and b depends on c.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultMutableVersionConstraint.java

    package org.gradle.api.internal.artifacts.dependencies;
    
    import com.google.common.collect.Lists;
    import org.gradle.api.artifacts.VersionConstraint;
    import org.gradle.api.internal.artifacts.ImmutableVersionConstraint;
    import org.gradle.api.internal.artifacts.VersionConstraintInternal;
    
    import javax.annotation.Nullable;
    import java.util.Collections;
    import java.util.List;
    
    import static com.google.common.base.Strings.nullToEmpty;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * @return the encompassing roots
         */
        public static Collection<? extends File> calculateRoots(Iterable<? extends File> files) {
            List<File> sortedFiles = Lists.newArrayList(files);
            Collections.sort(sortedFiles, FILE_SEGMENT_COMPARATOR);
            List<File> result = Lists.newArrayListWithExpectedSize(sortedFiles.size());
    
            File currentRoot = null;
            for (File file : sortedFiles) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top