Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for longOpt (0.08 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .longOpt("quiet")
                    .desc("Quiet output - only show errors")
                    .build());
            options.addOption(Option.builder(Character.toString(VERBOSE))
                    .longOpt("verbose")
                    .desc("Produce execution verbose output")
                    .build());
            options.addOption(Option.builder(Character.toString(ERRORS))
                    .longOpt("errors")
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java

                options.addOption(Option.builder(ALTERNATE_POM_FILE)
                        .longOpt("file")
                        .hasArg()
                        .desc("Force the use of an alternate POM file (or directory with pom.xml)")
                        .build());
                options.addOption(Option.builder(OFFLINE)
                        .longOpt("offline")
                        .desc("Work offline")
                        .build());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

                        .longOpt("verbose")
                        .desc("Produce execution verbose output")
                        .build());
                options.addOption(Option.builder(SHOW_ERRORS)
                        .longOpt("errors")
                        .desc("Produce execution error messages")
                        .build());
                options.addOption(Option.builder(BATCH_MODE)
                        .longOpt("batch-mode")
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_aws/fess/doc.json

                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_pt": {
              "match": "*_pt",
              "mapping": {
                "type": "text",
                "analyzer": "portuguese_analyzer"
              }
            }
          },
          {
            "lang_pt-br": {
              "match": "*_pt-br",
              "mapping": {
                "type": "text",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/_cloud/fess/doc.json

                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_pt": {
              "match": "*_pt",
              "mapping": {
                "type": "text",
                "analyzer": "portuguese_analyzer"
              }
            }
          },
          {
            "lang_pt-br": {
              "match": "*_pt-br",
              "mapping": {
                "type": "text",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/doc.json

                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_pt": {
              "match": "*_pt",
              "mapping": {
                "type": "text",
                "analyzer": "portuguese_analyzer"
              }
            }
          },
          {
            "lang_pt-br": {
              "match": "*_pt-br",
              "mapping": {
                "type": "text",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        for (policy in addressStates.values) {
          policy.scheduleOpener()
        }
      }
    
      /**
       * Performs maintenance on this pool, evicting the connection that has been idle the longest if
       * either it has exceeded the keep alive limit or the idle connections limit.
       *
       * Returns the duration in nanoseconds to sleep until the next scheduled call to this method.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

      return b == addressOffset + 4
    }
    
    /** Encodes an IPv6 address in canonical form according to RFC 5952. */
    internal fun inet6AddressToAscii(address: ByteArray): String {
      // Go through the address looking for the longest run of 0s. Each group is 2-bytes.
      // A run must be longer than one group (section 4.2.2).
      // If there are multiple equal runs, the first one must be used (section 4.2.3).
      var longestRunOffset = -1
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Dfs.java

                        }
                    }
                }
            }
    
            if (dr == null && path != null) {
                /* We did not match a domain based root. Now try to match the
                 * longest path in the list of stand-alone referrals.
                 */
                if (referrals != null && now > referrals.expiration) {
                    referrals = null;
                }
                if (referrals == null) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.7K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

        // Start by looking for exact matches. We start at the leftmost label. For example, foo.bar.com
        // will look like: [foo, bar, com], [bar, com], [com]. The longest matching rule wins.
        var exactMatch: String? = null
        for (i in domainLabelsUtf8Bytes.indices) {
          val rule = publicSuffixListBytes.binarySearch(domainLabelsUtf8Bytes, i)
          if (rule != null) {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top