Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for minimizeC (0.17 sec)

  1. src/internal/fuzz/fuzz.go

    		var inputC chan fuzzInput
    		input, ok := c.peekInput()
    		if ok && c.crashMinimizing == nil && !stopping {
    			inputC = c.inputC
    		}
    
    		var minimizeC chan fuzzMinimizeInput
    		minimizeInput, ok := c.peekMinimizeInput()
    		if ok && !stopping {
    			minimizeC = c.minimizeC
    		}
    
    		select {
    		case <-doneC:
    			// Interrupted, canceled, or timed out.
    			// stop sets doneC to nil, so we don't busy wait here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. src/internal/fuzz/worker.go

    // interrupted.
    var errSharedMemClosed = errors.New("internal error: shared memory was closed and unmapped")
    
    // minimize tells the worker to call the minimize method. See
    // workerServer.minimize.
    func (wc *workerClient) minimize(ctx context.Context, entryIn CorpusEntry, args minimizeArgs) (entryOut CorpusEntry, resp minimizeResponse, retErr error) {
    	wc.mu.Lock()
    	defer wc.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_minimize.txt

    	f.Add(make([]byte, 100))
    	f.Fuzz(func(t *testing.T, b []byte) {
    		if len(b) < 50 {
    			// Make sure that b is large enough that it can be minimized
    			return
    		}
    		// Given the randomness of the mutations, this should allow the
    		// minimizer to trim down the value a bit.
    		for _, n := range b {
    			if n != 0 {
    				if len(b) == 50 {
    					t.Log("got the minimum size!")
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 16:15:36 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_minimize_interesting.txt

    [!fuzz-instrumented] skip
    
    # Test that when an interesting value is discovered (one that expands coverage),
    # the fuzzing engine minimizes it before writing it to the cache.
    #
    # The program below starts with a seed value of length 100, but more coverage
    # will be found for any value other than the seed. We should end with a value
    # in the cache of length 1 (the minimizer currently does not produce empty
    # strings). check_cache.go confirms that.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. src/internal/fuzz/minimize.go

    Katie Hockman <******@****.***> 1638375916 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 21:15:51 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_minimize_dirty_cov.txt

    		if good, err := checkFile(name, expected); err != nil {
    			fmt.Fprintln(os.Stderr, err)
    			os.Exit(1)
    		} else if good {
    			os.Exit(0)
    		}
    	}
    	fmt.Fprintln(os.Stderr, "input over minimized")
    	os.Exit(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/adminlte.min.js

    ace,t.fn[e].Constructor=a,t.fn[e].noConflict=function(){return t.fn[e]=i,a._jQueryInterface},a}(jQuery),r=function(t){var e="CardWidget",i=".lte.cardwidget",n=t.fn[e],s={EXPANDED:"expanded"+i,COLLAPSED:"collapsed"+i,MAXIMIZED:"maximized"+i,MINIMIZED:"minimized"+i,REMOVED:"removed"+i},o={CARD:"card",COLLAPSED:"collapsed-card",WAS_COLLAPSED:"was-collapsed",MAXIMIZED:"maximized-card"},a={DATA_REMOVE:'[data-card-widget="remove"]',DATA_COLLAPSE:'[data-card-widget="collapse"]',DATA_MAXIMIZE:'[data-car...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 23.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue19632.go

    // license that can be found in the LICENSE file.
    
    // Check that we don't crash due to "lost track of variable in
    // liveness" errors against unused variables.
    
    package p
    
    import "strings"
    
    // Minimized test case from github.com/mvdan/sh/syntax.
    func F() {
    	var _ = []string{
    		strings.Repeat("\n\n\t\t        \n", 10) +
    			"# " + strings.Repeat("foo bar ", 10) + "\n" +
    			strings.Repeat("longlit_", 10) + "\n",
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 19:52:45 UTC 2017
    - 539 bytes
    - Viewed (0)
  9. src/net/splice_linux.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"internal/poll"
    	"io"
    )
    
    var pollSplice = poll.Splice
    
    // spliceFrom transfers data from r to c using the splice system call to minimize
    // copies from and to userspace. c must be a TCP connection.
    // Currently, spliceFrom is only enabled if r is a TCP or a stream-oriented Unix connection.
    //
    // If spliceFrom returns handled == false, it has performed no work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/kotlin/infra/build.gradle.kts

    plugins {
        `java-library`
        id("com.github.johnrengelman.shadow")
    }
    
    shadow {
        applicationDistribution.from("src/dist")
    }
    
    tasks.shadowJar {
        minimize()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
Back to top