Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 161 for unhappy (0.24 sec)

  1. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingBufferBenchmark.java

     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Param;
    
    public class TaskOutputPackagingBufferBenchmark extends AbstractTaskOutputPackagingBenchmark {
        @Param({"tar.snappy.small", "tar.snappy.large"})
        String packer;
    
        @Param({"direct", "buffered.small", "buffered.large"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyCommonsPacker.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.apache.commons.compress.compressors.snappy.FramedSnappyCompressorInputStream;
    import org.apache.commons.compress.compressors.snappy.FramedSnappyCompressorOutputStream;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

        /**
         * Note: always throws the failure in some form. The return value is to keep the compiler happy.
         */
        public static RuntimeException throwAsUncheckedException(Throwable t) {
            return throwAsUncheckedException(t, false);
        }
    
        /**
         * Note: always throws the failure in some form. The return value is to keep the compiler happy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaWorkspaceIntegrationTest.groovy

    idea {
        workspace {
            iws {
                withXml {
                    it.asNode().appendNode('stay', 'happy')
                }
            }
        }
    }
    '''
    
            //then
            String content = getFile([:], "root.iws").text
            assert content.contains("<foo>bar")
            assert content.contains("<stay>happy")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithNestedParent/some-thing/webinar-impl/src/main/java/webinar/Webinar.java

    package webinar;
    
    import org.apache.commons.lang.StringUtils;
    
    public class Webinar implements Demoable {
      
      private final String description;
      
      public Webinar() {
        this("I'm happy today!");
      }
      
      public Webinar(String description) {
        this.description = description;
      }
    
      public String getDescription() {
        return StringUtils.normalizeSpace(description);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 379 bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithRemoteParent/some-thing/webinar-impl/src/main/java/webinar/Webinar.java

    package webinar;
    
    import org.apache.commons.lang.StringUtils;
    
    public class Webinar implements Demoable {
      
      private final String description;
      
      public Webinar() {
        this("I'm happy today!");
      }
      
      public Webinar(String description) {
        this.description = description;
      }
    
      public String getDescription() {
        return StringUtils.normalizeSpace(description);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 379 bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/build.gradle.kts

        jmhImplementation(libs.aircompressor)
        jmhImplementation(libs.commonsCompress)
        jmhImplementation(libs.commonsIo)
        jmhImplementation(libs.jtar)
        jmhImplementation(libs.snappy)
    
        testImplementation(testFixtures(project(":base-services")))
        testImplementation(testFixtures(project(":build-operations")))
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleNoBackReferences/some-thing/webinar-impl/src/main/java/webinar/Webinar.java

    package webinar;
    
    import org.apache.commons.lang.StringUtils;
    
    public class Webinar implements Demoable {
      
      private final String description;
      
      public Webinar() {
        this("I'm happy today!");
      }
      
      public Webinar(String description) {
        this.description = description;
      }
    
      public String getDescription() {
        return StringUtils.normalizeSpace(description);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 379 bytes
    - Viewed (0)
  9. src/compress/flate/deflatefast.go

    // license that can be found in the LICENSE file.
    
    package flate
    
    import "math"
    
    // This encoding algorithm, which prioritizes speed over output size, is
    // based on Snappy's LZ77-style encoder: github.com/golang/snappy
    
    const (
    	tableBits  = 14             // Bits used in the table.
    	tableSize  = 1 << tableBits // Size of the table.
    	tableMask  = tableSize - 1  // Mask for table indices. Redundant, but can eliminate bounds checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  10. docs/select/README.md

    - Parquet API supports columnar compression for  using GZIP, Snappy, LZ4. Whole object compression is not supported for Parquet objects.
    - Server-side encryption - The Select API supports querying objects that are protected with server-side encryption.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
Back to top