Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for coat (0.15 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

                    n++;
                    int size = chain.size();
                    int cost = chain.getCreditCost();
                    CommonServerMessageBlockRequest next = chain.getNext();
                    if ( log.isTraceEnabled() ) {
                        log.trace(
                            String.format("%s costs %d avail %d (%s)", chain.getClass().getName(), cost, this.credits.availablePermits(), this.name));
                    }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  2. .bazelrc

    build:linux --copt="-Werror=unused-result"
    # Add switch as an error on Linux.
    build:linux --copt="-Wswitch"
    build:linux --copt="-Werror=switch"
    # Required for building with clang
    build:linux --copt="-Wno-error=unused-but-set-variable"
    
    # Linux ARM64 specific options
    build:linux_arm64 --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3"
    
    
    # On Windows, `__cplusplus` is wrongly defined without this switch
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  3. configure.py

                                                     question, default_cc_opt_flags)
      for opt in cc_opt_flags.split():
        write_to_bazelrc('build:opt --copt=%s' % opt)
        write_to_bazelrc('build:opt --host_copt=%s' % opt)
    
    
    def set_tf_cuda_clang(environ_cp):
      """set TF_CUDA_CLANG action_env.
    
      Args:
        environ_cp: copy of the os.environ.
      """
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/adminlte.min.js.map

    JQUERY_NO_CONFLICT = $.fn[NAME]\n  const DATA_API_KEY       = '.data-api'\n\n  const Event = {\n    TOGGLED: `toggled{EVENT_KEY}`\n  }\n\n  const Selector = {\n    DATA_TOGGLE: '[data-widget=\"chat-pane-toggle\"]',\n    DIRECT_CHAT: '.direct-chat'\n  };\n\n  const ClassName = {\n    DIRECT_CHAT_OPEN: 'direct-chat-contacts-open'\n  };\n\n  /**\n   * Class Definition\n   * ====================================================\n   */\n\n  class DirectChat {\n    constructor(element, config) {\n      this._element...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 77K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/collect/Sets.java

       * E} is an {@link Enum} type, use {@link EnumSet#noneOf} instead. Otherwise, strongly consider
       * using a {@code LinkedHashSet} instead, at the cost of increased memory footprint, to get
       * deterministic iteration behavior.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 77.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        }
      }
    
      public void testForArrayWithPosition() {
        String[] array = {"foo", "bar", "cat"};
        Iterator<String> iterator = Iterators.forArrayWithPosition(array, 1);
        assertTrue(iterator.hasNext());
        assertEquals("bar", iterator.next());
        assertTrue(iterator.hasNext());
        assertEquals("cat", iterator.next());
        assertFalse(iterator.hasNext());
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 55.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/IteratorsTest.java

        }
      }
    
      public void testForArrayWithPosition() {
        String[] array = {"foo", "bar", "cat"};
        Iterator<String> iterator = Iterators.forArrayWithPosition(array, 1);
        assertTrue(iterator.hasNext());
        assertEquals("bar", iterator.next());
        assertTrue(iterator.hasNext());
        assertEquals("cat", iterator.next());
        assertFalse(iterator.hasNext());
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 55.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setGoogleChatWebhookUrls(final String value) {
            setSystemProperty(Constants.GOOGLE_CHAT_WEBHOOK_URLS_PROPERTY, value);
        }
    
        default String getGoogleChatWebhookUrls() {
            return getSystemProperty(Constants.GOOGLE_CHAT_WEBHOOK_URLS_PROPERTY, StringUtil.EMPTY);
        }
    
        default void setNotificationTo(final String value) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  9. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # This condition takes precedence over :linux_x86_64
    config_setting(
        name = "linux_x86_64_no_sse",
        values = {
            "cpu": "k8",
            "copt": "-mno-sse4.2",
        },
        visibility = ["//visibility:public"],
    )
    
    # This condition takes precedence over :linux_x86_64
    # TODO(b/290533709): Remove this with PJRT build rule cleanup.
    config_setting(
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  10. guava/src/com/google/common/base/Preconditions.java

     * creation. However, the methods of this class have a large number of overloads that prevent such
     * allocations in many common cases.
     *
     * <p>The message string is not formatted unless the exception will be thrown, so the cost of the
     * string formatting itself should not be a concern.
     *
     * <p>As with any performance concerns, you should consider profiling your code (in a production
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Feb 14 15:46:55 GMT 2024
    - 52.9K bytes
    - Viewed (0)
Back to top