Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for noticeFile (0.06 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/integTest/groovy/org/elasticsearch/gradle/internal/PublishPluginFuncTest.groovy

                }
                        
                // requires elasticsearch artifact available
                tasks.named('bundlePlugin').configure { enabled = false }
                licenseFile = file('license.txt')
                noticeFile = file('notice.txt')
                version = "1.0"
                group = 'org.acme'        
            """
    
            when:
            def result = gradleRunner('assemble', '--stacktrace').build()
    
            then:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 19K bytes
    - Click Count (0)
  4. 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)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/collect/MapMaker.java

       * higher value than you need can waste space and time, and a significantly lower value can lead
       * to thread contention. But overestimates and underestimates within an order of magnitude do not
       * usually have much noticeable impact. A value of one permits only one thread to modify the map
       * at a time, but since read operations can proceed concurrently, this still yields higher
       * concurrency than full synchronization. Defaults to 4.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  8. 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)
  9. android/guava/src/com/google/common/collect/MapMaker.java

       * higher value than you need can waste space and time, and a significantly lower value can lead
       * to thread contention. But overestimates and underestimates within an order of magnitude do not
       * usually have much noticeable impact. A value of one permits only one thread to modify the map
       * at a time, but since read operations can proceed concurrently, this still yields higher
       * concurrency than full synchronization. Defaults to 4.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  10. docs/en/docs/deployment/docker.md

    You can read more about it in the [Docker docs for shell and exec form](https://docs.docker.com/reference/dockerfile/#shell-and-exec-form).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 28.3K bytes
    - Click Count (1)
Back to Top