Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 1,005 for trip (0.03 seconds)

  1. docs/bucket/versioning/versioning-tests.sh

    #!/usr/bin/env bash
    
    if [ -n "$TEST_DEBUG" ]; then
    	set -x
    fi
    
    trap 'catch $LINENO' ERR
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    		echo "server logs ========="
    		cat "/tmp/sitea_1.log"
    		echo "==========================="
    		cat "/tmp/sitea_2.log"
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    	if [ $# -ne 0 ]; then
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Sep 06 09:42:21 GMT 2024
    - 2.5K bytes
    - Click Count (0)
  2. docs/zh/docs/deployment/manually.md

    除此之外,还有其他一些可选的 ASGI 服务器,例如:
    
    * [Uvicorn](https://www.uvicorn.dev/): 高性能 ASGI 服务器。
    * [Hypercorn](https://hypercorn.readthedocs.io/): 与 HTTP/2 和 Trio 等兼容的 ASGI 服务器。
    * [Daphne](https://github.com/django/daphne): 为 Django Channels 构建的 ASGI 服务器。
    * [Granian](https://github.com/emmett-framework/granian): 基于 Rust 的 HTTP 服务器,专为 Python 应用设计。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                    if (currentAuthMethod.indexOf(' ') != 4) {
                        continue;
                    }
                    authMethod = "NTLM";
                    authorization = currentAuthMethod.substring(5).trim();
                    break;
                }
                if (currentAuthMethod.startsWith("Negotiate")) {
                    if (currentAuthMethod.length() == 9) {
                        authMethod = "Negotiate";
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 22.1K bytes
    - Click Count (0)
  4. .teamcity/scripts/CheckRemoteProjectRef.java

            for (String rawKey : args) {
                String key = rawKey.trim();
                if (key.isEmpty()) continue;
                if (!props.containsKey(key)) {
                    missing.add(key);
                    continue;
                }
                String value = props.get(key);
                if (value == null || value.trim().isEmpty()) {
                    empty.add(key);
                }
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  5. docs/ko/docs/deployment/manually.md

    다음을 포함해 여러 대안이 있습니다:
    
    * [Uvicorn](https://www.uvicorn.dev/): 고성능 ASGI 서버.
    * [Hypercorn](https://hypercorn.readthedocs.io/): HTTP/2 및 Trio 등 여러 기능과 호환되는 ASGI 서버.
    * [Daphne](https://github.com/django/daphne): Django Channels를 위해 만들어진 ASGI 서버.
    * [Granian](https://github.com/emmett-framework/granian): Python 애플리케이션을 위한 Rust HTTP 서버.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  6. internal/s3select/sql/parser_test.go

    		"substring('abcd' from 2)",
    		"substring('abcd' , 2 , 2)",
    
    		"substring('abcd' , 22 )",
    		"trim('  aab  ')",
    		"trim(leading from '  aab  ')",
    		"trim(trailing from '  aab  ')",
    		"trim(both from '  aab  ')",
    
    		"trim(both '12' from '  aab  ')",
    		"trim(leading '12' from '  aab  ')",
    		"trim(trailing '12' from '  aab  ')",
    		"count(23)",
    	}
    	for i, tc := range validCases {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 9.2K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/net/HostSpecifier.java

       *       2001:db8::1}
       * </ul>
       *
       * @throws IllegalArgumentException if the specifier is not valid.
       */
      public static HostSpecifier fromValid(String specifier) {
        // Verify that no port was specified, and strip optional brackets from
        // IPv6 literals.
        HostAndPort parsedHost = HostAndPort.fromString(specifier);
        Preconditions.checkArgument(!parsedHost.hasPort());
        String host = parsedHost.getHost();
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 6K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                            + searchResultsText.toString() + "--- SEARCH RESULTS END ---\n");
        }
    
        /**
         * Strips HTML tags from the given text.
         *
         * @param text the text to strip HTML tags from
         * @return the text without HTML tags
         */
        protected String stripHtmlTags(final String text) {
            if (StringUtil.isBlank(text)) {
                return text;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  9. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/GitInfo.java

                            // we're on to the next config item so stop looking
                            break;
                        }
                        String[] pair = line.trim().split("=", 2);
                        props.put(pair[0].trim(), pair[1].trim());
                    } else {
                        if (line.equals("[remote \"origin\"]")) {
                            foundOrigin = true;
                        }
                    }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 7.8K bytes
    - Click Count (0)
  10. src/main/webapp/js/admin/plugins/form-validator/html5.js

    r l=[],m=a("#"+e.attr("list"));if(m.find("option").each(function(){l.push(a(this).text())}),0===l.length){var n=a.trim(a("#"+e.attr("list")).text()).split("\n");a.each(n,function(b,c){l.push(a.trim(c))})}m.remove(),a.formUtils.suggest(e,l)}if(b.length){f||(h["data-validation-optional"]="true"),g=!0;var o=(e.attr("data-validation")||"")+" "+b.join(" ");e.attr("data-validation",a.trim(o)),a.each(h,function(a,b){e.attr(a,b)})}}),g&&e.trigger("html5ValidationAttrsFound"),b||f.filter("input[placehold...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 2.6K bytes
    - Click Count (0)
Back to Top