Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 721 for sortby (0.16 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

            try (final ResponseData responseData = storageClient.doGet("storage://fess/")) {
                fail();
            } catch (ChildUrlsException e) {
                String[] values = e.getChildUrlList().stream().map(d -> d.getUrl()).sorted().toArray(n -> new String[n]);
                assertEquals(3, values.length);
                assertEquals("storage://fess/dir1/", values[0]);
                assertEquals("storage://fess/dir3/", values[1]);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/SortedIterables.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Utilities for dealing with sorted collections of all types.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class SortedIterables {
      private SortedIterables() {}
    
      /**
       * Returns {@code true} if {@code elements} is a sorted collection using an ordering equivalent to
       * {@code comparator}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 30 10:33:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/SortedIterables.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Utilities for dealing with sorted collections of all types.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class SortedIterables {
      private SortedIterables() {}
    
      /**
       * Returns {@code true} if {@code elements} is a sorted collection using an ordering equivalent to
       * {@code comparator}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 30 10:33:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/tasks/PluginsManifest.kt

        private
        fun FileSystemLocation.toGradleModuleName(): String? = asFile.name
            .takeIf { it.startsWith("gradle-") }
            ?.run { substring(0, lastIndexOf('-')) }
    
        private
        fun Iterable<String>.joinForProperties() = sorted().joinToString(",")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  5. src/go/doc/doc.go

    	Decl *ast.GenDecl
    
    	// associated declarations
    	Consts  []*Value // sorted list of constants of (mostly) this type
    	Vars    []*Value // sorted list of variables of (mostly) this type
    	Funcs   []*Func  // sorted list of functions returning this type
    	Methods []*Func  // sorted list of methods (including embedded ones) of this type
    
    	// Examples is a sorted list of examples associated with
    	// this type. Examples are extracted from _test.go files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

    bool IsAlwaysAllowlistedOp(Operation *op) {
      return llvm::isa<
          // clang-format off
          // go/keep-sorted start
          TF::ConstOp,
          TF::IdentityOp,
          TF::PartitionedCallOp,
          TF::StatefulPartitionedCallOp
          // go/keep-sorted end
          // clang-format on
          >(op);
    }
    
    // LINT.IfChange
    // The list of quantizable ops in the Legacy Integer mode.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/io/fs/readdir.go

    type ReadDirFS interface {
    	FS
    
    	// ReadDir reads the named directory
    	// and returns a list of directory entries sorted by filename.
    	ReadDir(name string) ([]DirEntry, error)
    }
    
    // ReadDir reads the named directory
    // and returns a list of directory entries sorted by filename.
    //
    // If fs implements [ReadDirFS], ReadDir calls fs.ReadDir.
    // Otherwise ReadDir calls fs.Open and uses ReadDir and Close
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/kotlin/build.gradle.kts

    tasks.register("loadfile") {
        val resourceDirectory = file("./antLoadfileResources")
        doLast {
            val files = resourceDirectory.listFiles().sorted()
            files.forEach { file ->
                if (file.isFile) {
                    ant.withGroovyBuilder {
                        "loadfile"("srcFile" to file, "property" to file.name)
                    }
                    println(" *** ${file.name} ***")
                    println("${ant.properties[file.name]}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 493 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_input.py

    import tensorflow.compat.v2 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common
    
    
    class TestModule(tf.Module):
      # The fNNNN name prefixes in this file are such that the sorted order of the
      # functions in the resulting MLIR output match the order in the source file,
      # allowing us to conveniently co-locate the CHECK's with the code they are
      # checking.
      #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. hack/lib/test.sh

          cp "${original}" "${original}.sorted"
          cp "${latest}" "${latest}.sorted"
      else
          sort "${original}" > "${original}.sorted"
          sort "${latest}" > "${latest}.sorted"
      fi
    
      if [ "${comparator}" == "eq" ] || [ "${comparator}" == "exact" ]; then
        if [ "$(diff -iwB "${original}".sorted "${latest}".sorted)" == "" ] ; then
            echo -n "${green}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top