Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 102 for uncompressed (0.19 sec)

  1. src/image/png/reader.go

    	}
    	// cr and pr are the bytes for the current and previous row.
    	cr := make([]uint8, rowSize)
    	pr := make([]uint8, rowSize)
    
    	for y := 0; y < height; y++ {
    		// Read the decompressed bytes.
    		_, err := io.ReadFull(r, cr)
    		if err != nil {
    			if err == io.EOF || err == io.ErrUnexpectedEOF {
    				return nil, FormatError("not enough pixel data")
    			}
    			return nil, err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. src/net/http/fs.go

    	// on the fly, then you shouldn't be using ServeFile/ServeContent, or
    	// you should compress the entire file up-front and provide a seekable
    	// view of the compressed data.
    	//
    	// However, since we've observed this pattern in the wild, and since
    	// setting Content-Length here breaks code that mostly-works today,
    	// skip setting Content-Length if the user set Content-Encoding.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    application/rtf=rtf\n\
    application/vnd.ms-htmlhelp=chm\n\
    application/zip=zip\n\
    application/x-7z-comressed=7z\n\
    application/x-bzip=bz\n\
    application/x-bzip2=bz2\n\
    application/x-tar=tar\n\
    application/x-rar-compressed=rar\n\
    video/3gp=3gp\n\
    video/3g2=3g2\n\
    video/x-msvideo=avi\n\
    video/x-flv=flv\n\
    video/mpeg=mpeg\n\
    video/mp4=mp4\n\
    video/ogv=ogv\n\
    video/quicktime=qt\n\
    video/x-m4v=m4v\n\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. cmd/server-main.go

    		Value:  10 * humanize.MiByte,
    		EnvVar: "MINIO_LOG_SIZE",
    		Hidden: true,
    	},
    	cli.BoolFlag{
    		Name:   "log-compress",
    		Usage:  "specify if we want the rotated logs to be gzip compressed or not",
    		EnvVar: "MINIO_LOG_COMPRESS",
    		Hidden: true,
    	},
    	cli.StringFlag{
    		Name:   "log-prefix",
    		Usage:  "specify the log prefix name for the server log",
    		EnvVar: "MINIO_LOG_PREFIX",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  5. src/cmd/compile/internal/ssa/debug_test.go

    		optFlags += " -l"
    	}
    
    	moreargs := []string{}
    	if *useGdb && (runtime.GOOS == "darwin" || runtime.GOOS == "windows") {
    		// gdb and lldb on Darwin do not deal with compressed dwarf.
    		// also, Windows.
    		moreargs = append(moreargs, "-ldflags=-compressdwarf=false")
    	}
    
    	subTest(t, debugger+"-dbg", "hist", dbgFlags, moreargs...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. src/image/png/reader_test.go

    	}
    }
    
    func TestIncompleteIDATOnRowBoundary(t *testing.T) {
    	// The following is an invalid 1x2 grayscale PNG image. The header is OK,
    	// but the zlib-compressed IDAT payload contains two bytes "\x02\x00",
    	// which is only one row of data (the leading "\x02" is a row filter).
    	const (
    		ihdr = "\x00\x00\x00\x0dIHDR\x00\x00\x00\x01\x00\x00\x00\x02\x08\x00\x00\x00\x00\xbc\xea\xe9\xfb"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    	// renameio.WriteToFile, with one key difference: we want to validate the
    	// contents of the file (by hashing it) before we commit it. Because the file
    	// is zip-compressed, we need an actual file — or at least an io.ReaderAt — to
    	// validate it: we can't just tee the stream as we write it.
    	f, err := tempFile(ctx, filepath.Dir(zipfile), filepath.Base(zipfile), 0666)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate_test.go

    		if cpErr != nil {
    			return cpErr
    		}
    
    		return nil
    	})
    }
    
    func TestMain(m *testing.M) {
    	code := m.Run()
    	// Cleanup uncompress snapshot charts
    	os.RemoveAll(string(snapshotCharts))
    	os.Exit(code)
    }
    
    func TestManifestGenerateComponentHubTag(t *testing.T) {
    	g := NewWithT(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/MediaType.java

       */
      public static final MediaType KML = createConstant(APPLICATION_TYPE, "vnd.google-earth.kml+xml");
    
      /**
       * <a href="http://www.opengeospatial.org/standards/kml/">OGC KML (Keyhole Markup Language)</a>,
       * compressed using the ZIP format into KMZ archives.
       */
      public static final MediaType KMZ = createConstant(APPLICATION_TYPE, "vnd.google-earth.kmz");
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/MediaType.java

       */
      public static final MediaType KML = createConstant(APPLICATION_TYPE, "vnd.google-earth.kml+xml");
    
      /**
       * <a href="http://www.opengeospatial.org/standards/kml/">OGC KML (Keyhole Markup Language)</a>,
       * compressed using the ZIP format into KMZ archives.
       */
      public static final MediaType KMZ = createConstant(APPLICATION_TYPE, "vnd.google-earth.kmz");
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
Back to top