Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for upwards (0.12 sec)

  1. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    package sanitizers_test
    
    import (
    	"internal/testenv"
    	"strings"
    	"testing"
    )
    
    func TestLibFuzzer(t *testing.T) {
    	// Skip tests in short mode.
    	if testing.Short() {
    		t.Skip("libfuzzer tests can take upwards of minutes to run; skipping in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    
    	goos, err := goEnv("GOOS")
    	if err != nil {
    		t.Fatal(err)
    	}
    	goarch, err := goEnv("GOARCH")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

    // usages of the original constant. If the operands are not constants (i.e.
    // results of some other computation), then the pass recursively traverses the
    // call tree upwards and duplicates all constants found in the subtree in a
    // similar manner.
    //
    // This pass may be used to avoid placing shape-determining constants in the CPU
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            layout.settingsFile == settingsFile
            !layout.buildDefinitionMissing
    
            where:
            settingsFilename << TEST_CASES
        }
    
        def "returns start directory when search upwards is disabled with a #settingsFilename file"() {
            given:
            def locator = buildLayoutFactoryFor()
    
            and:
            def currentDir = tmpDir.createDir("sub/current")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/testing/sub_test.go

    			}
    		},
    	}, {
    		desc:   "failure in parallel test propagates upwards",
    		ok:     false,
    		maxPar: 1,
    		output: `
    --- FAIL: failure in parallel test propagates upwards (N.NNs)
        --- FAIL: failure in parallel test propagates upwards/#00 (N.NNs)
            --- FAIL: failure in parallel test propagates upwards/#00/par (N.NNs)
            `,
    		f: func(t *T) {
    			t.Run("", func(t *T) {
    				t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  5. src/compress/flate/writer_test.go

    	N int
    }
    
    func (e *errorWriter) Write(b []byte) (int, error) {
    	if e.N <= 0 {
    		return 0, io.ErrClosedPipe
    	}
    	e.N--
    	return len(b), nil
    }
    
    // Test if errors from the underlying writer is passed upwards.
    func TestWriteError(t *testing.T) {
    	t.Parallel()
    	buf := new(bytes.Buffer)
    	n := 65536
    	if !testing.Short() {
    		n *= 4
    	}
    	for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	d.storage[d.n] = d.dsbyte
    	d.n++
    	for d.n < d.rate {
    		d.storage[d.n] = 0
    		d.n++
    	}
    	// This adds the final one bit for the padding. Because of the way that
    	// bits are numbered from the LSB upwards, the final bit is the MSB of
    	// the last byte.
    	d.storage[d.rate-1] ^= 0x80
    	// Apply the permutation
    	d.permute()
    	d.state = spongeSqueezing
    	d.n = d.rate
    	copyOut(d, d.storage[:d.rate])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                    || artifact.getFile()
                            .getPath()
                            .startsWith(session.getLocalRepository().getBasedir().getPath());
        }
    
        /**
         * Unravels trace tree (going upwards from current node), looking for {@link CollectStepData} trace data.
         * This method may return {@code null} if no collect step data found in passed trace data or it's parents.
         * <p>
         * Visible for testing.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_globals_to_ml_program.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    
    namespace mlir {
    namespace tf_saved_model {
    
    // Trace upwards until we hit a (block) argument a value originates from.
    static LogicalResult traceUpwardsToArgument(Value v, llvm::DenseSet<Value> seen,
                                                BlockArgument *out) {
      if (seen.contains(v)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/base.go

    				fmt.Fprintf(os.Stderr, "GCAdjust: Reuse GOGC adjust, current goal %d, count is %d, current gogc %d\n",
    					goal, count, myGogc)
    			}
    			return true
    		}
    
    		// Believe goal has been adjusted upwards, else it would be less-than-or-equal than requestedHeapGoal
    		calcLive := 100 * goal / (100 + myGogc)
    
    		if 2*calcLive < requestedHeapGoal { // calcLive can exceed requestedHeapGoal!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/intervals.go

    	}
    	if err := check(c.s); err != nil {
    		return Intervals{}, err
    	}
    	r := c.s
    	return r, nil
    }
    
    // Live method should be invoked on instruction at position p if instr
    // contains an upwards-exposed use of a resource. See the example in
    // the comment at the beginning of this file for an example.
    func (c *IntervalsBuilder) Live(pos int) error {
    	if pos < 0 {
    		return fmt.Errorf("bad pos, negative")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top