Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for testDir (0.14 sec)

  1. cmd/import-boss/main.go

    		// Discard packages which represent the <pkg>.test result.  They don't seem
    		// to hold any interesting source info.
    		if strings.HasSuffix(pkg.PkgPath, ".test") {
    			klog.V(3).Infof("ignoring testbin pkg: %q", pkg.PkgPath)
    			continue
    		}
    
    		// Packages which end in "_test" have tests which use the special "_test"
    		// package suffix.  Packages which have test files must be tests.  Don't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/math/big/nat_test.go

    				}
    			}
    		}
    	}
    }
    
    func testSqr(t *testing.T, x nat) {
    	got := make(nat, 2*len(x))
    	want := make(nat, 2*len(x))
    	got = got.sqr(x)
    	want = want.mul(x, x)
    	if got.cmp(want) != 0 {
    		t.Errorf("basicSqr(%v), got %v, want %v", x, got, want)
    	}
    }
    
    func TestSqr(t *testing.T) {
    	for _, a := range prodNN {
    		if a.x != nil {
    			testSqr(t, a.x)
    		}
    		if a.y != nil {
    			testSqr(t, a.y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/encoding/base64/base64_test.go

    package base64
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"math"
    	"reflect"
    	"runtime/debug"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    type testpair struct {
    	decoded, encoded string
    }
    
    var pairs = []testpair{
    	// RFC 3548 examples
    	{"\x14\xfb\x9c\x03\xd9\x7e", "FPucA9l+"},
    	{"\x14\xfb\x9c\x03\xd9", "FPucA9k="},
    	{"\x14\xfb\x9c\x03", "FPucAw=="},
    
    	// RFC 4648 examples
    	{"", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

      }
    
      @J2ktIncompatible
      @GwtIncompatible // NullPointerTester
      public void testNullPointers() {
        NullPointerTester tester = new NullPointerTester();
        tester.setDefault(BigInteger.class, ONE);
        tester.setDefault(int.class, 1);
        tester.setDefault(long.class, 1L);
        tester.testAllPublicStaticMethods(BigIntegerMath.class);
      }
    
      @GwtIncompatible // String.format
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

            (inputArtifactNames as Set).size() == inputArtifactNames.size()
    
            where:
            classpathNotation   | displayName
            'gradleApi()'       | 'Gradle API'
            'gradleTestKit()'   | 'Gradle TestKit'
            'localGroovy()'     | 'Local Groovy'
            'gradleKotlinDsl()' | 'Gradle Kotlin DSL'
        }
    
        def "file collection transform can be captured"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. src/encoding/base32/base32_test.go

    		StdEncoding,
    		StdEncoding.WithPadding(NoPadding),
    	}
    
    	for _, encoding := range encodings {
    		for _, testpair := range pairs {
    
    			var buf strings.Builder
    			encoder := NewEncoder(encoding, &buf)
    			encoder.Write([]byte(testpair.decoded))
    			encoder.Close()
    
    			expected := testpair.encoded
    			if encoding.padChar == NoPadding {
    				expected = strings.ReplaceAll(expected, "=", "")
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top