Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 297 of 297 for startswith (0.12 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            putEnv(env, Context.PROVIDER_URL, providerUrl);
            putEnv(env, Context.SECURITY_PRINCIPAL, principal);
            putEnv(env, Context.SECURITY_CREDENTIALS, credntials);
            if (providerUrl != null && providerUrl.startsWith("ldaps://")) {
                putEnv(env, Context.SECURITY_PROTOCOL, "ssl");
            }
            return env;
        }
    
        protected void putEnv(final Hashtable<String, String> env, final String key, final String value) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                }
    
                if (importSource instanceof FileModelSource && request.getRootDirectory() != null) {
                    Path sourcePath = ((FileModelSource) importSource).getPath();
                    if (sourcePath.startsWith(request.getRootDirectory())) {
                        problems.add(new ModelProblemCollectorRequest(Severity.WARNING, ModelProblem.Version.BASE)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 83.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/InetAddresses.java

        checkNotNull(hostAddr);
    
        // Decide if this should be an IPv6 or IPv4 address.
        String ipString;
        int expectBytes;
        if (hostAddr.startsWith("[") && hostAddr.endsWith("]")) {
          ipString = hostAddr.substring(1, hostAddr.length() - 1);
          expectBytes = 16;
        } else {
          ipString = hostAddr;
          expectBytes = 4;
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertThat(call).contains("protocol=http")
        assertThat(call.lowercase(Locale.US)).contains("scheme=basic")
      }
    
      private fun authCallsForHeader(authHeader: String): List<String> {
        val proxy = authHeader.startsWith("Proxy-")
        val responseCode = if (proxy) 407 else 401
        val authenticator = RecordingAuthenticator(null)
        java.net.Authenticator.setDefault(authenticator)
        server.enqueue(
          MockResponse.Builder()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

          fail("Using seed " + seed + ". State " + Arrays.toString(q.toArray()));
        }
      }
    
      private static void assertIntactUsingStartedWith(
          Collection<?> startedWith, MinMaxPriorityQueue<?> q) {
        if (!q.isIntact()) {
          fail("Started with " + startedWith + ". State " + Arrays.toString(q.toArray()));
        }
      }
    
      private static void assertEqualsUsingSeed(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

          fail("Using seed " + seed + ". State " + Arrays.toString(q.toArray()));
        }
      }
    
      private static void assertIntactUsingStartedWith(
          Collection<?> startedWith, MinMaxPriorityQueue<?> q) {
        if (!q.isIntact()) {
          fail("Started with " + startedWith + ". State " + Arrays.toString(q.toArray()));
        }
      }
    
      private static void assertEqualsUsingSeed(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/IterablesTest.java

        sequences.add("lemon");
    
        assertEquals(3, Iterables.indexOf(sequences, STARTSWITH_A));
      }
    
      public void testIndexOf_genericPredicate2() {
        List<String> sequences = Lists.newArrayList("bob", "charlie", "henry", "apple", "lemon");
        assertEquals(3, Iterables.indexOf(sequences, STARTSWITH_A));
      }
    
      public void testMergeSorted_empty() {
        // Setup
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:12:33 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top