Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 1,005 for trip (0.77 seconds)

  1. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/internal/fake_git/remote/distribution/archives/build.gradle

        }
    
        tasks.named("assemble").configure {
            dependsOn('tar')
        }
    }
    
    def calculateBranchVersion() {
        File f = rootProject.file(".git/refs/heads/origin")
        def branchName = f.list()?.first().trim()
        return branchName + ".1"
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                            updater.write("# " + line);
                        }
                        continue;
                    }
    
                    final String input = m.group(1).trim();
                    final String output = m.group(2).trim();
    
                    if (input == null || output == null) {
                        logger.warn("Failed to parse stemmer override: line={}, path={}", line, path);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/JenkinsCIDetector.java

        private static final String WORKSPACE = "WORKSPACE";
    
        @Override
        public Optional<CIInfo> detectCI() {
            String workspace = System.getenv(WORKSPACE);
            if (workspace != null && !workspace.trim().isEmpty()) {
                return Optional.of(new CIInfo() {
                    @Override
                    public String name() {
                        return NAME;
                    }
                });
            }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Apr 13 18:50:07 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                            postcard.addReplyTo(fessConfig.getMailReturnPath());
                            if (toAddresses.length > 0) {
                                stream(toAddresses).of(stream -> stream.map(String::trim).forEach(address -> {
                                    postcard.addTo(address);
                                }));
                            } else {
                                postcard.addTo(fessConfig.getMailFromAddress());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  5. buildscripts/test-timeout.sh

    	echo "minio executable binary not found in current directory"
    	exit 1
    fi
    
    if [ ! -x "$PWD/minio" ]; then
    	echo "minio executable binary not found in current directory"
    	exit 1
    fi
    
    trap 'catch $LINENO' ERR
    
    function purge() {
    	rm -rf "$1"
    }
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    	fi
    
    	echo "Cleaning up instances of MinIO"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Dec 02 13:21:17 GMT 2024
    - 2.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

            if (StringUtil.isNotBlank(value)) {
                split(value, ",").of(stream -> stream.forEach(list::add));
            }
            return list.stream().filter(StringUtil::isNotBlank).map(String::trim).toArray(n -> new String[n]);
        }
    
        /**
         * Gets the default roles as an array.
         * @return The default roles as an array.
         */
        protected String[] getDefaultRolesAsArray() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  7. docs/tr/docs/deployment/manually.md

    Buna alternatif birkaç seçenek daha vardır, örneğin:
    
    * [Uvicorn](https://www.uvicorn.dev/): yüksek performanslı bir ASGI server.
    * [Hypercorn](https://hypercorn.readthedocs.io/): diğer özelliklerin yanında HTTP/2 ve Trio ile uyumlu bir ASGI server.
    * [Daphne](https://github.com/django/daphne): Django Channels için geliştirilmiş ASGI server.
    * [Granian](https://github.com/emmett-framework/granian): Python uygulamaları için bir Rust HTTP server.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  8. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/BaseParserTest.java

            Assertions.assertNotEquals(
                    "${session.rootDirectory}", invokerRequest.userProperties().get("foo"));
            Assertions.assertFalse(invokerRequest.userProperties().get("foo").trim().isEmpty());
        }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  9. docs/en/docs/deployment/manually.md

    There are several alternatives, including:
    
    * [Uvicorn](https://www.uvicorn.dev/): a high performance ASGI server.
    * [Hypercorn](https://hypercorn.readthedocs.io/): an ASGI server compatible with HTTP/2 and Trio among other features.
    * [Daphne](https://github.com/django/daphne): the ASGI server built for Django Channels.
    * [Granian](https://github.com/emmett-framework/granian): A Rust HTTP server for Python applications.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  10. docs/es/docs/deployment/manually.md

    Hay varias alternativas, incluyendo:
    
    * [Uvicorn](https://www.uvicorn.dev/): un servidor ASGI de alto rendimiento.
    * [Hypercorn](https://hypercorn.readthedocs.io/): un servidor ASGI compatible con HTTP/2 y Trio entre otras funcionalidades.
    * [Daphne](https://github.com/django/daphne): el servidor ASGI construido para Django Channels.
    * [Granian](https://github.com/emmett-framework/granian): Un servidor HTTP Rust para aplicaciones en Python.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 7K bytes
    - Click Count (0)
Back to Top