Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 169 for replacements (0.41 sec)

  1. src/main/java/jcifs/ntlmssp/av/AvPairs.java

                    it.remove();
                }
            }
        }
    
        /**
         * Replace all occurances of the given type
         *
         * @param pairs the list of AV pairs to modify
         * @param rep the replacement AV pair
         */
        public static void replace(final List<AvPair> pairs, final AvPair rep) {
            remove(pairs, rep.getType());
            pairs.add(rep);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt

            var delta = entry.hpackSize
            if (index != -1) { // Index -1 == new header.
              delta -= dynamicTable[dynamicTableIndex(index)]!!.hpackSize
            }
    
            // if the new or replacement header is too big, drop all entries.
            if (delta > maxDynamicTableByteCount) {
              clearDynamicTable()
              return
            }
    
            // Evict headers to the required length.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

                    channel.getTransport().close();
                }
            } catch (Exception e) {
                log.debug("Error disconnecting removed channel", e);
            }
        }
    
        /**
         * Establish a replacement channel
         */
        public void establishReplacementChannel() {
            if (!multiChannelEnabled)
                return;
    
            try {
                int currentChannels = channels.size();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Booleans.java

       * Boolean#hashCode(boolean)}.
       *
       * @param value a primitive {@code boolean} value
       * @return a hash code for the value
       */
      @InlineMe(replacement = "Boolean.hashCode(value)")
      public static int hashCode(boolean value) {
        return Boolean.hashCode(value);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Booleans.java

       * Boolean#hashCode(boolean)}.
       *
       * @param value a primitive {@code boolean} value
       * @return a hash code for the value
       */
      @InlineMe(replacement = "Boolean.hashCode(value)")
      public static int hashCode(boolean value) {
        return Boolean.hashCode(value);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Floats.java

      /**
       * Returns a hash code for {@code value}; obsolete alternative to {@link Float#hashCode(float)}.
       *
       * @param value a primitive {@code float} value
       * @return a hash code for the value
       */
      @InlineMe(replacement = "Float.hashCode(value)")
      public static int hashCode(float value) {
        return Float.hashCode(value);
      }
    
      /**
       * Compares the two specified {@code float} values using {@link Float#compare(float, float)}. You
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsPathMappingBhv.java

                result.setProcessType(DfTypeUtil.toString(source.get("processType")));
                result.setRegex(DfTypeUtil.toString(source.get("regex")));
                result.setReplacement(DfTypeUtil.toString(source.get("replacement")));
                result.setSortOrder(DfTypeUtil.toInteger(source.get("sortOrder")));
                result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java

            log.info("Removing failed channel {} after max retries", channel.getChannelId());
    
            manager.removeChannel(channel);
            failoverStates.remove(channel.getChannelId());
    
            // Try to establish a replacement channel
            manager.establishReplacementChannel();
        }
    
        /**
         * State tracking for channel failover
         */
        public static class FailoverState {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/Doubles.java

      /**
       * Returns a hash code for {@code value}; obsolete alternative to {@link Double#hashCode(double)}.
       *
       * @param value a primitive {@code double} value
       * @return a hash code for the value
       */
      @InlineMe(replacement = "Double.hashCode(value)")
      public static int hashCode(double value) {
        return Double.hashCode(value);
      }
    
      /**
       * Compares the two specified {@code double} values. The sign of the value returned is the same as
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.7K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/fe.tld

        <function-signature>java.lang.String replace(java.lang.Object, java.lang.String, java.lang.String)</function-signature>
        <example>${fe:replace(input, regex, replacement)}</example>
      </function>
    
      <function>
        <description>Format a content as code.</description>
        <name>formatCode</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top