Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for libjpeg (0.19 sec)

  1. src/image/jpeg/scan.go

    // Other than I/O errors, it is also an error if we encounter an {0xFF, M}
    // two-byte marker sequence where M is not 0x00, 0xFF or the expectedRST.
    //
    // This is similar to libjpeg's jdmarker.c's next_marker function.
    // https://github.com/libjpeg-turbo/libjpeg-turbo/blob/2dfe6c0fe9e18671105e94f7cbf044d4a1d157e6/jdmarker.c#L892-L935
    //
    // Precondition: d.tmp[:2] holds the next two bytes of JPEG-encoded input
    // (input in the d.readFull sense).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    # New rules should be added above this target.
    # -------------------------------------------
    
    # TensorFlow uses several libraries that may also be used by applications
    # linking against the C and C++ APIs (such as libjpeg).  When we create
    # the shared library, only export the core TF API functions to avoid
    # causing library conflicts (e.g., those reported in github issue 1924).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. RELEASE.md

        ([CVE-2020-26271](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26271))
    *   Solves an OOM issue on TPUs when XLA contexts use fused average updates
    *   Updates `libjpeg-turbo` to `2.0.5` to handle
        [CVE-2020-13790](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13790).
    *   Updates `junit` to `4.13.1` to handle
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/main/java/org/gradle/api/plugins/JavaLibraryDistributionPlugin.java

                childSpec.from(mainFeature.getJarTask());
                childSpec.from(project.file("src/dist"));
    
                CopySpec libSpec = project.copySpec();
                libSpec.into("lib");
                libSpec.from(mainFeature.getRuntimeClasspathConfiguration());
    
                childSpec.with(libSpec);
                dist.getContents().with(childSpec);
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/image/png/writer.go

    func filter(cr *[nFilter][]byte, pr []byte, bpp int) int {
    	// We try all five filter types, and pick the one that minimizes the sum of absolute differences.
    	// This is the same heuristic that libpng uses, although the filters are attempted in order of
    	// estimated most likely to be minimal (ftUp, ftPaeth, ftNone, ftSub, ftAverage), rather than
    	// in their enumeration order (ftNone, ftSub, ftUp, ftAverage, ftPaeth).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/action.go

    		if cfg.BuildContext.Compiler == "gccgo" && cfg.BuildO == "" {
    			// For the header file, remove the "lib"
    			// added by go/build, so we generate pkg.h
    			// rather than libpkg.h.
    			dir, file := filepath.Split(hdrTarget)
    			file = strings.TrimPrefix(file, "lib")
    			hdrTarget = filepath.Join(dir, file)
    		}
    		ah := &Action{
    			Mode:    "install header",
    			Package: a.Package,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top