Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FuzzDecode (0.1 sec)

  1. src/image/jpeg/fuzz_test.go

    // license that can be found in the LICENSE file.
    
    package jpeg
    
    import (
    	"bytes"
    	"image"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func FuzzDecode(f *testing.F) {
    	if testing.Short() {
    		f.Skip("Skipping in short mode")
    	}
    
    	testdata, err := os.ReadDir("../testdata")
    	if err != nil {
    		f.Fatalf("failed to read testdata directory: %s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 15:56:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/image/gif/fuzz_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gif
    
    import (
    	"bytes"
    	"image"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func FuzzDecode(f *testing.F) {
    	if testing.Short() {
    		f.Skip("Skipping in short mode")
    	}
    
    	testdata, err := os.ReadDir("../testdata")
    	if err != nil {
    		f.Fatalf("failed to read testdata directory: %s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 15:57:34 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/image/png/fuzz_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package png
    
    import (
    	"bytes"
    	"image"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func FuzzDecode(f *testing.F) {
    	if testing.Short() {
    		f.Skip("Skipping in short mode")
    	}
    
    	testdata, err := os.ReadDir("../testdata")
    	if err != nil {
    		f.Fatalf("failed to read testdata directory: %s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 15:56:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top