Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 503 for geen (1.09 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

                return !(isLocal(url.getHost()) || url.getProtocol().equals("file"));
            } catch (MalformedURLException e) {
                // bad url just skip it here. It should have been validated already, but the wagon lookup will deal with it
                return false;
            }
        }
    
        private static boolean isLocal(String host) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/compression/DefaultCompressionService.java

         */
        private int countUniqueBytes(byte[] data) {
            boolean[] seen = new boolean[256];
            int count = 0;
    
            for (byte b : data) {
                int index = b & 0xFF;
                if (!seen[index]) {
                    seen[index] = true;
                    count++;
                }
            }
    
            return count;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.32.md

    - A new feature that allows unsafe deletion of corrupt resources has been added, it is disabled by default,
      and it can be enabled by setting the option `--feature-gates=AllowUnsafeMalformedObjectDeletion=true`.
      It comes with an API change, a new delete option `ignoreStoreReadErrorWithClusterBreakingPotential` has
      been introduced, it is not set by default, this maintains backward compatibility.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

            in = new DatagramPacket(rcv_buf, RCV_BUF_SIZE);
    
            if (RO == null || RO.length() == 0) {
    
                /* No resolveOrder has been specified, use the
                 * default which is LMHOSTS,DNS,WINS,BCAST
                 * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not
                 * been specified.
                 */
    
                if (NbtAddress.getWINSAddress() == null) {
                    resolveOrder = new int[2];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

    //    connection.queueEvent { connectionListener.connectEnd(connection) }
        scheduleCloser()
      }
    
      /**
       * Notify this pool that [connection] has become idle. Returns true if the connection has been
       * removed from the pool and should be closed.
       */
      fun connectionBecameIdle(connection: RealConnection): Boolean {
        connection.assertLockHeld()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jun 03 17:10:08 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  6. src/main/resources/fess_message.properties

    errors.app.illegal.transition = Illegal transition. Please try again.
    errors.app.db.already.deleted = It may have been deleted by another process. Please try again.
    errors.app.db.already.updated = It may have been updated by another process. Please try again.
    errors.app.db.already.exists = The data already exists. Please try again.
    errors.app.double.submit.request = It may have been processed before this request. Please try again.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_en.properties

    errors.app.illegal.transition = Illegal transition. Please try again.
    errors.app.db.already.deleted = It may have been deleted by another process. Please try again.
    errors.app.db.already.updated = It may have been updated by another process. Please try again.
    errors.app.db.already.exists = The data already exists. Please try again.
    errors.app.double.submit.request = It may have been processed before this request. Please try again.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.12.md

    - Es-image has been upgraded to Elasticsearch 6.3.2 ([#67484](https://github.com/kubernetes/kubernetes/pull/67484))
    - metrics-server has been upgraded to v0.3.1. ([#68746](https://github.com/kubernetes/kubernetes/pull/68746))
    - GLBC has been updated to v1.2.3 ([#66793](https://github.com/kubernetes/kubernetes/pull/66793))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/text/Tokenizer.java

            if (processOrdinary()) {
                return ttype;
            }
            ttype = peekc;
            return ttype;
        }
    
        /**
         * Returns the string that has already been read.
         *
         * @return The string that has already been read.
         */
        public String getReadString() {
            return str.substring(0, colno - 1);
        }
    
        private int read() {
            if (colno >= str.length()) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/WinErrorTest.java

        void codes_are_non_negative_and_unique() {
            // Edge checks: ensure there are no negative or duplicate codes
            Set<Integer> seen = new HashSet<>();
            for (int c : WinError.WINERR_CODES) {
                assertTrue(c >= 0, "Code should be non-negative: " + c);
                assertTrue(seen.add(c), "Duplicate code detected: " + c);
            }
        }
    
        // Simple collaborator to demonstrate interaction verification with Mockito
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.4K bytes
    - Viewed (0)
Back to top