Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for testminio (0.61 sec)

  1. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

      }
    
      @GwtIncompatible
      public void testMin_noArgs() {
        try {
          Floats.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(Floats.min(LEAST)).isEqualTo(LEAST);
        assertThat(Floats.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/DoublesTest.java

      }
    
      @GwtIncompatible
      public void testMin_noArgs() {
        try {
          Doubles.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(Doubles.min(LEAST)).isEqualTo(LEAST);
        assertThat(Doubles.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(
                Doubles.min(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/FloatsTest.java

      }
    
      @GwtIncompatible
      public void testMin_noArgs() {
        try {
          Floats.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(Floats.min(LEAST)).isEqualTo(LEAST);
        assertThat(Floats.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/LongsTest.java

            .isEqualTo((long) 9);
      }
    
      public void testMin_noArgs() {
        try {
          Longs.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(Longs.min(MIN_VALUE)).isEqualTo(MIN_VALUE);
        assertThat(Longs.min(MAX_VALUE)).isEqualTo(MAX_VALUE);
        assertThat(Longs.min((long) 8, (long) 6, (long) 7, (long) 5, (long) 3, (long) 0, (long) 9))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. src/cmd/go/internal/list/list.go

    		wg.Wait()
    		for _, pkgset := range testPackages {
    			p, pmain, ptest, pxtest := pkgset.p, pkgset.pmain, pkgset.ptest, pkgset.pxtest
    			if pmain != nil {
    				pkgs = append(pkgs, pmain)
    				data := *pmain.Internal.TestmainGo
    				sema.Acquire(ctx, 1)
    				wg.Add(1)
    				go func() {
    					h := cache.NewHash("testmain")
    					h.Write([]byte("testmain\n"))
    					h.Write(data)
    					out, _, err := c.Put(h.Sum(), bytes.NewReader(data))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    //   - is a synthesized "main" package for a test binary, or
    //   - contains only _test.go files.
    func (p *Package) IsTestOnly() bool {
    	return p.ForTest != "" ||
    		p.Internal.TestmainGo != nil ||
    		len(p.TestGoFiles)+len(p.XTestGoFiles) > 0 && len(p.GoFiles)+len(p.CgoFiles) == 0
    }
    
    type PackageInternal struct {
    	// Unexported fields are not part of the public API.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    		pmain.Internal.OmitDebug = false
    	}
    
    	if !cfg.BuildN {
    		// writeTestmain writes _testmain.go,
    		// using the test description gathered in t.
    		if err := os.WriteFile(testDir+"_testmain.go", *pmain.Internal.TestmainGo, 0666); err != nil {
    			return nil, nil, nil, err
    		}
    	}
    
    	// Set compile objdir to testDir we've already created,
    	// so that the default file path stripping applies to _testmain.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top