Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for testVol (0.28 sec)

  1. tensorflow/cc/framework/test_op.cc

    Skye Wanderman-Milne <******@****.***> 1502840776 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 15 23:50:32 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  2. src/regexp/testdata/testregex.c

    				case '?':
    					test |= TEST_VERIFY;
    					test &= ~(TEST_AND|TEST_OR);
    					state.verify = state.passed;
    					continue;
    				case '&':
    					test |= TEST_VERIFY|TEST_AND;
    					test &= ~TEST_OR;
    					continue;
    				case '|':
    					test |= TEST_VERIFY|TEST_OR;
    					test &= ~TEST_AND;
    					continue;
    				case ';':
    					test |= TEST_OR;
    					test &= ~TEST_AND;
    					continue;
    
    				case '{':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  3. src/testing/match_test.go

    		// Skipping a non-existent test doesn't change anything.
    		{"", "TestFoo/skipped", "", "TestFoo", true, false},
    		{"TestFoo", "TestFoo/skipped", "", "TestFoo", true, false},
    		{"TestFoo/", "TestFoo/skipped", "", "TestFoo", true, true},
    		{"TestFoo/bar/baz", "TestFoo/skipped", "", "TestFoo", true, true},
    		{"TestFoo", "TestFoo/skipped", "", "TestBar", false, false},
    		{"TestFoo/", "TestFoo/skipped", "", "TestBar", false, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/matcher_test.go

    			matches: []string{"TestFoo/with_space"},
    		},
    		{
    			name:      "regex",
    			input:     []string{"Foo/.*/Baz"},
    			matches:   []string{"TestFoo/something/TestBaz"},
    			nomatches: []string{"TestFoo", "TestFoo/TestBaz", "TestFoo/something/TestBar"},
    		},
    		{
    			name:      "multiple",
    			input:     []string{"TestFoo/subset", "TestBar"},
    			matches:   []string{"TestBar", "TestBar/subtest", "TestFoo/subset"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 12 23:30:37 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_acl_windows.txt

    grep 'BUILTIN\\Guests\s+Allow' $WORK\guest-acl.txt
    
    # The file written to the ordinary directory should not.
    ! grep 'BUILTIN\\Guests\s+Allow' $WORK\exe-acl.txt
    
    
    -- TestACL/go.mod --
    module TestACL
    -- TestACL/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. pkg/cmd/flag_test.go

    func TestInitializeBoolFlag(t *testing.T) {
    	cmd := &cobra.Command{}
    	var testBool bool
    	flag.BoolVar(&testBool, "testbool", defaultBool, "test bool flag")
    	AddFlags(cmd)
    
    	testName := "Initialize bool Flag"
    	if !flag.Parsed() {
    		t.Errorf("%s: flag.Parsed() returns false, should be true", testName)
    	}
    
    	cmd.Flags().VisitAll(func(f *pflag.Flag) {
    		if f.Name != "testbool" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/import_main.txt

    package main_test
    
    import (
    	"testing"
    	xmain "x"
    )
    
    var _ = xmain.X
    
    func TestFoo(t *testing.T) {}
    -- p1/p.go --
    package p1
    
    import xmain "x"
    
    var _ = xmain.X
    -- p2/p.go --
    package p2
    -- p2/p_test.go --
    package p2
    
    import (
    	"testing"
    	xmain "x"
    )
    
    var _ = xmain.X
    
    func TestFoo(t *testing.T) {}
    -- p3/p.go --
    package p
    -- p3/p_test.go --
    package p_test
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 18 21:48:16 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnMultipleFailuresIntegrationTest.groovy

            when:
            includedBuilds << buildB << buildC << buildD
    
            buildA.buildFile << """
                task testAll {
                    dependsOn gradle.includedBuilds*.task(':test')
                }
            """
    
            and:
            fails(buildA, 'testAll', [CONTINUE_COMMAND_LINE_OPTION])
    
            then:
            assertTaskExecuted(':buildB', ':test')
            assertTaskExecuted(':buildC', ':sub1:test')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:27 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_chatty_parallel_success_run.txt

    	close(afterSubTest)
    	<-afterSecondLog // Delay the "PASS: TestInterruptor" line until after "CONT  TestLog".
    }
    
    func TestLog(t *testing.T) {
    	t.Parallel()
    
    	t.Logf("this is the first TestLog log")
    	close(afterFirstLog)
    	<-afterSubTest
    	t.Logf("this is the second TestLog log")
    	close(afterSecondLog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/schema/validation_test.go

    				},
    				Origin: fakeOrigin{},
    			},
    		},
    	}
    	a := ValidationAnalyzer{s: testSchema}
    	a.Analyze(ctx)
    }
    
    func TestSchemaValidationWrapper(t *testing.T) {
    	testCol := gvk.VirtualService
    
    	m1 := &v1alpha3.VirtualService{}
    	m2 := &v1alpha3.VirtualService{}
    	m3 := &v1alpha3.VirtualService{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top