Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for testFoo (0.37 sec)

  1. src/go/printer/testdata/linebreaks.input

    		"usage: godoc package [name ...]\n" +
    		"	godoc -http=:6060\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    func TestReader(t *testing.T) {
    testLoop:
    	for i, test := range untarTests {
    		f, err := os.Open(test.file, os.O_RDONLY, 0444)
    		if err != nil {
    			t.Errorf("test %d: Unexpected error: %v", i, err)
    			continue
    		}
    		tr := NewReader(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  2. pkg/registry/certificates/certificates/storage/metrics_test.go

    		},
    	}
    	for _, tt := range tests {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    			t.Parallel()
    
    			testReq := &testCounterVecMetric{}
    			testHon := &testCounterVecMetric{}
    
    			finishFunc, err := countCSRDurationMetric(testReq, testHon)(nil, tt.obj, tt.old, tt.options)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			finishFunc(nil, tt.success)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/testdata/issue30628.gox

    v3;
    package issue30628
    pkgpath issue30628
    import os os "os"
    import sync sync "sync"
    init cpu internal..z2fcpu..import poll internal..z2fpoll..import testlog internal..z2ftestlog..import io io..import os os..import runtime runtime..import sys runtime..z2finternal..z2fsys..import sync sync..import syscall syscall..import time time..import
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 20:50:13 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/text/TokenizerTest.java

    import static org.junit.Assert.assertThat;
    
    import org.junit.Test;
    
    /**
     * @author higa
     *
     */
    public class TokenizerTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void testEOF() throws Exception {
            final Tokenizer tokenizer = new Tokenizer("");
            assertThat(tokenizer.nextToken(), is(Tokenizer.TT_EOF));
            assertThat(tokenizer.nextToken(), is(Tokenizer.TT_EOF));
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/discovery/discovery_test.go

    limitations under the License.
    */
    
    package discovery
    
    import (
    	"testing"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    func TestFor(t *testing.T) {
    	tests := []struct {
    		name   string
    		d      kubeadm.JoinConfiguration
    		expect bool
    	}{
    		{
    			name:   "default Discovery",
    			d:      kubeadm.JoinConfiguration{},
    			expect: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	testlog, err := os.ReadFile(a.Objdir + "testlog.txt")
    	if err != nil || !bytes.HasPrefix(testlog, testlogMagic) || testlog[len(testlog)-1] != '\n' {
    		if cache.DebugTest {
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "testcache: %s: reading testlog: %v\n", a.Package.ImportPath, err)
    			} else {
    				fmt.Fprintf(os.Stderr, "testcache: %s: reading testlog: malformed\n", a.Package.ImportPath)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/log/LoggerTest.java

         * @throws Exception
         */
        @Test
        public void testFatal() throws Exception {
            logger.fatal("fatal");
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testLog() throws Exception {
            logger.log("ILOGTEST0001");
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testLogWithArgs() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                    classpath = files()
                }
                """ : ""}
                dependencies {
                    implementation("org.test:foo:1.0") {
                        capabilities {
                            requireCapability("org.test:foo-feature2")
                        }
                    }
                }
                publishing {
                    publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  9. src/cmd/cover/testdata/main.go

    func verify() {
    	for b := range counters {
    		got, index := count(b.line)
    		if b.count == anything && got != 0 {
    			got = anything
    		}
    		if got != b.count {
    			fmt.Fprintf(os.Stderr, "test_go:%d expected count %d got %d [counter %d]\n", b.line, b.count, got, index)
    			PASS = false
    		}
    	}
    	verifyPanic()
    	if !PASS {
    		fmt.Fprintf(os.Stderr, "FAIL\n")
    		os.Exit(2)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 16:40:40 UTC 2016
    - 3K bytes
    - Viewed (0)
  10. docs/pt/docs/history-design-future.md

    Isso significa que o **FastAPI** foi testado especificamente com os editores usados por 80% dos desenvolvedores Python. Como a maioria dos outros editores tendem a funcionar de forma similar, todos os seus benefĂ­cios devem funcionar para virtualmente todos os editores.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top