Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for noticeFile (0.29 seconds)

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

            ext.set("licenseFile", null);
            ext.set("noticeFile", null);
            // add license/notice files
            project.afterEvaluate(p -> p.getTasks().withType(Jar.class).configureEach(jar -> {
                if (ext.has("licenseFile") == false
                    || ext.get("licenseFile") == null
                    || ext.has("noticeFile") == false
                    || ext.get("noticeFile") == null) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 14:34:07 GMT 2021
    - 3.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalPluginBuildPlugin.java

                    copySpec.rename(s -> "LICENSE.txt");
                }));
            }
    
            final var noticeFile = extension.getNoticeFile();
            if (noticeFile != null) {
                final var generateNotice = tasks.register("generateNotice", NoticeTask.class, noticeTask -> {
                    noticeTask.setInputFile(noticeFile);
                    noticeTask.source(Util.getJavaMainSourceSet(project).get().getAllJava());
                });
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 5K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/NoticeTask.java

            // party component names, unaffected by the full path to the various files
            final Map<String, File> seen = new TreeMap<String, File>();
            FileCollection noticeFiles = getNoticeFiles();
            if (noticeFiles != null) {
                for (File file : getNoticeFiles()) {
                    String name = file.getName().replaceFirst("-NOTICE\\.txt$", "");
                    if (seen.containsKey(name)) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.9K bytes
    - Click Count (0)
  4. regression-test/src/androidTest/java/okhttp/regression/LetsEncryptTest.java

                  .addTrustedCertificate((X509Certificate) isgCertificate)
                  // Uncomment to allow connection to any site generally, but will cause
                  // noticeable memory pressure in Android apps.
    //              .addPlatformTrustedCertificates()
                  .build();
    
          builder.sslSocketFactory(certificates.sslSocketFactory(), certificates.trustManager());
        }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Nov 17 07:40:31 GMT 2020
    - 6.1K bytes
    - Click Count (0)
  5. docs/distributed/DESIGN.md

    > http://host1/export5
    > http://host2/export5
    > http://host1/export6
    > http://host2/export6
    > http://host1/export7
    > http://host2/export7
    > http://host1/export8
    > http://host2/export8
    ```
    
    *A noticeable trait of this expansion is that it chooses unique hosts such the setup provides maximum protection and availability.*
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Feb 26 09:25:50 GMT 2025
    - 8K bytes
    - Click Count (2)
  6. docs/kms/IAM.md

    No, an upgrade should not cause any downtime. However, on the first startup -
    since MinIO will attempt to migrate any existing IAM data - the boot process may
    take slightly longer, but may not be visibly noticeable. Once the migration has
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 5.3K bytes
    - Click Count (0)
Back to Top