Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,185 for testPath (0.35 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/field/path_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package field
    
    import "testing"
    
    func TestPath(t *testing.T) {
    	testCases := []struct {
    		op       func(*Path) *Path
    		expected string
    	}{
    		{
    			func(p *Path) *Path { return p },
    			"root",
    		},
    		{
    			func(p *Path) *Path { return p.Child("first") },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 2.6K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    				t.Errorf("expected PodSpec HostPort to be 0, got %v", got)
    			}
    		})
    	}
    }
    
    type testPath struct {
    	path  string
    	value reflect.Value
    }
    
    func detectDefaults(t *testing.T, obj runtime.Object, v reflect.Value) map[string]string {
    	defaults := map[string]string{}
    	toVisit := []testPath{{path: "", value: v}}
    
    	for len(toVisit) > 0 {
    		visit := toVisit[0]
    		toVisit = toVisit[1:]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractSpockTaskTest.groovy

            getTask().getInputs() != null
            getTask().getOutputs() != null
            getTask().getOnlyIf() != null
            getTask().getOnlyIf().isSatisfiedBy(getTask())
        }
    
        def testPath() {
            ProjectInternal childProject = TestUtil.createChildProject(project, "child")
            childProject.getProjectDir().mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 14:27:55 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. src/internal/trace/trace_test.go

    	// Check if we're on a builder.
    	onBuilder := testenv.Builder() != ""
    	onOldBuilder := !strings.Contains(testenv.Builder(), "gotip") && !strings.Contains(testenv.Builder(), "go1")
    
    	testPath := filepath.Join("./testdata/testprog", progName)
    	testName := progName
    	runTest := func(t *testing.T, stress bool, extraGODEBUG string) {
    		// Run the program and capture the trace, which is always written to stdout.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

    import static org.junit.Assert.assertEquals
    import static org.junit.Assert.assertThrows
    import static org.junit.Assert.fail
    
    class BaseDirFileResolverTest {
        static final String TEST_PATH = 'testpath'
    
        File baseDir
        File testFile
        File testDir
    
        BaseDirFileResolver baseDirConverter
        @Rule public TestNameTestDirectoryProvider rootDir = new TestNameTestDirectoryProvider(getClass())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. src/path/filepath/path_windows_test.go

    		if err != nil {
    			t.Errorf("toNorm(%s) failed: %v\n", test.arg, err)
    		} else if got != test.want {
    			t.Errorf("toNorm(%s) returns %s, but %s expected\n", test.arg, got, test.want)
    		}
    	}
    
    	testPath := `{{tmp}}\test\foo\bar`
    
    	testsDir := []struct {
    		wd   string
    		arg  string
    		want string
    	}{
    		// test absolute paths
    		{".", `{{tmp}}\test\foo\bar`, `{{tmp}}\test\foo\bar`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

                    .evaluate("${session.rootDirectory.uri}");
            assertEquals(path.toUri(), result);
        }
    
        @Test
        public void testPath() throws Exception {
            Path path = Paths.get("").toAbsolutePath();
    
            MavenSession mavenSession = createMavenSession(null);
            mavenSession.getRequest().setTopDirectory(path);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

                    .evaluate("${session.rootDirectory.uri}");
            assertEquals(path.toUri(), result);
        }
    
        @Test
        public void testPath() throws Exception {
            Path path = Paths.get("").toAbsolutePath();
    
            MavenSession mavenSession = createMavenSession(null);
            mavenSession.getRequest().setTopDirectory(path);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	}
    	if opts.Param1 != "value1" && opts.Param2 != "value2" {
    		t.Errorf("Unexpected options value: %#v", opts)
    	}
    	if opts.Path != testPath {
    		t.Errorf("Unexpected path value. Expected: %s. Actual: %s.", testPath, opts.Path)
    	}
    }
    
    func TestDelete(t *testing.T) {
    	storage := map[string]rest.Storage{}
    	simpleStorage := SimpleRESTStorage{}
    	ID := "id"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  10. .idea/scopes/TestData.xml

    <component name="DependencyValidationManager">
      <scope name="TestData" pattern="file:testData//*" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Sep 21 07:11:21 UTC 2023
    - 114 bytes
    - Viewed (0)
Back to top