Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 96 for ext4 (0.06 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/testfixtures/TestFixtureExtension.java

                .filter(p -> p.getExtensions().findByType(TestFixtureExtension.class) != null)
                .map(project -> project.getExtensions().getByType(TestFixtureExtension.class))
                .flatMap(ext -> ext.serviceToProjectUseMap.entrySet().stream())
                .filter(entry -> entry.getKey().equals(serviceName))
                .map(Map.Entry::getValue)
                .findAny();
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 4.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/elasticsearch.ide.gradle

          "<!--     ${checkstyleIdeFragment} -->\n"
        )
      }
    }
    
    // Applying this stuff, particularly the idea-ext plugin, has a cost so avoid it unless we're running in the IDE
    if (providers.systemProperty('idea.active').forUseAtConfigurationTime().getOrNull() == 'true') {
      project.apply(plugin: org.jetbrains.gradle.ext.IdeaExtPlugin)
    
      tasks.register('configureIdeaGradleJvm') {
        group = 'ide'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 19:34:12 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/core/io/ResourceUtil.java

            assertArgumentNotNull("path", path);
    
            if (extension == null) {
                return path;
            }
            final String ext = "." + extension;
            if (path.endsWith(ext)) {
                return path;
            }
            return path.replace('.', '/') + ext;
        }
    
        /**
         * Returns the resource path.
         *
         * @param clazz
         *            The class. Must not be {@literal null}.
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 14.7K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/JdkDownloadPlugin.java

                } else {
                    // simpler legacy pattern from JDK 9 to JDK 12 that we are advocating to Oracle to bring back
                    artifactPattern = "java/GA/jdk"
                        + jdk.getMajor()
                        + "/"
                        + jdk.getBuild()
                        + "/GPL/openjdk-[revision]_[module]-[classifier]_bin.[ext]";
                }
            } else {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 7.6K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/groovy/elasticsearch.bwc-test.gradle

     * in compliance with, at your election, the Elastic License 2.0 or the Server
     * Side Public License, v 1.
     */
    
    import org.elasticsearch.gradle.Version
    import org.elasticsearch.gradle.internal.info.BuildParams
    
    ext.bwcTaskName = { Version version ->
      return "v${version}#bwcTest"
    }
    
    def bwcTestSnapshots = tasks.register("bwcTestSnapshots") {
      if (project.bwc_tests_enabled) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 30 12:11:25 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  6. cmd/metacache-entries.go

    		// Root
    		idx := strings.Index(e.name, separator)
    		return idx == -1 || idx == len(e.name)-len(separator)
    	}
    	ext := strings.TrimPrefix(e.name, dir)
    	if len(ext) != len(e.name) {
    		idx := strings.Index(ext, separator)
    		// If separator is not found or is last entry, ok.
    		return idx == -1 || idx == len(ext)-len(separator)
    	}
    	return false
    }
    
    // isLatestDeletemarker returns whether the latest version is a delete marker.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Aug 08 15:29:58 GMT 2024
    - 24.1K bytes
    - Click Count (0)
  7. regression-test/src/androidTest/java/okhttp/regression/compare/OkHttpClientTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp.regression.compare;
    
    import androidx.test.ext.junit.runners.AndroidJUnit4;
    import java.io.IOException;
    import okhttp3.OkHttpClient;
    import okhttp3.Protocol;
    import okhttp3.Request;
    import static org.junit.Assert.assertEquals;
    
    import okhttp3.Response;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Nov 14 17:38:22 GMT 2020
    - 1.4K bytes
    - Click Count (0)
  8. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/LicensingPlugin.java

            Provider<String> projectLicenseURL = licenseCommitProvider.map(licenseCommit -> ELASTIC_LICENSE_URL_PREFIX +
                    licenseCommit + ELASTIC_LICENSE_URL_POSTFIX);
            // But stick the Elastic license url in project.ext so we can get it if we need to switch to it
            project.getExtensions().getExtraProperties().set("elasticLicenseUrl", projectLicenseURL);
    
            MapProperty<String, String> convention = licensesProperty.convention(
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  9. regression-test/src/androidTest/java/okhttp/regression/IssueReproductionTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp.regression;
    
    import androidx.test.ext.junit.runners.AndroidJUnit4;
    import okhttp3.OkHttpClient;
    import okhttp3.Protocol;
    import okhttp3.Request;
    import okhttp3.Response;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Jul 26 06:37:08 GMT 2021
    - 1.9K bytes
    - Click Count (0)
  10. regression-test/src/androidTest/java/okhttp/regression/compare/ApacheHttpClientTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp.regression.compare
    
    import androidx.test.ext.junit.runners.AndroidJUnit4
    import org.apache.hc.client5.http.classic.methods.HttpGet
    import org.apache.hc.client5.http.impl.classic.HttpClients
    import org.apache.hc.core5.http.HttpVersion
    import org.junit.After
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 07 06:56:34 GMT 2026
    - 1.5K bytes
    - Click Count (0)
Back to Top