Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,242 for fullpath (0.26 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

                result.assertTaskOrder(cleanFoo.fullPath, cleanBar.fullPath, clean.fullPath)
                result.assertTaskOrder(cleanBarLocal.fullPath, generateBar.fullPath, generate.fullPath)
                result.assertTaskOrder(cleanBar.fullPath, generateBar.fullPath, generate.fullPath)
                result.assertTaskOrder(cleanFoo.fullPath, generateFoo.fullPath, generate.fullPath)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fullpath.txt

    [short] skip
    
    # test with -fullpath
    ! go test ./x/... -fullpath
    stdout '^ +.+/gopath/src/x/fullpath/fullpath_test.go:8: test failed'
    # test without -fullpath
    ! go test ./x/...
    stdout '^ +fullpath_test.go:8: test failed'
    
    -- go.mod --
    module example
    -- x/fullpath/fullpath_test.go --
    package fullpath_test
    
    import (
    	"testing"
    )
    
    func TestFullPath(t *testing.T) {
    	t.Error("test failed")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:42:04 UTC 2023
    - 389 bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

                result.assertTaskOrder(generateFoo.fullPath, generateBar.fullPath)
                result.assertTaskOrder(generateFoo.fullPath, cleanFoo.fullPath, clean.fullPath)
                result.assertTaskOrder(packageBarSources.fullPath, cleanBar.fullPath, clean.fullPath)
                result.assertTaskOrder(generateBar.fullPath, cleanBar.fullPath, clean.fullPath)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/token_test.go

    	}
    
    	f, err := os.Create(fullPath)
    	if err != nil {
    		t.Errorf("Unable to create test file %q: %v", fullPath, err)
    	}
    	defer f.Close()
    
    	if _, err = f.WriteString(testConfigToken); err != nil {
    		t.Errorf("Unable to write test file %q: %v", fullPath, err)
    	}
    
    	// test dryRun = true on an exisiting file
    	if _, err = cmdutil.GetClientSet(fullPath, true); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/kubelet/util/util_windows_test.go

    	expectedAddress := "//./pipe/kubelet-pod-resources"
    
    	fullPath, err := LocalEndpoint(`pod-resources`, "kubelet")
    	require.NoErrorf(t, err, "Failed to create the local endpoint path")
    
    	address, dialer, err := util.GetAddressAndDialer(fullPath)
    	require.NoErrorf(t, err, "Failed to parse the endpoint path and get back address and dialer (path=%q)", fullPath)
    
    	dialerPointer := reflect.ValueOf(dialer).Pointer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/path/filepath/path_windows.go

    	if path == "" {
    		// syscall.FullPath returns an error on empty path, because it's not a valid path.
    		// To implement Abs behavior of returning working directory on empty string input,
    		// special-case empty path by changing it to "." path. See golang.org/issue/24441.
    		path = "."
    	}
    	fullPath, err := syscall.FullPath(path)
    	if err != nil {
    		return "", err
    	}
    	return Clean(fullPath), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/common_test.go

    	tmpDir := testutil.SetupTempDir(t)
    	defer os.RemoveAll(tmpDir)
    	fullPath := filepath.Join(tmpDir, "test-config-file")
    	f, err := os.Create(fullPath)
    	if err != nil {
    		t.Errorf("Unable to create test file %q: %v", fullPath, err)
    	}
    	defer f.Close()
    	if _, err = f.WriteString(testConfigToken); err != nil {
    		t.Errorf("Unable to write test file %q: %v", fullPath, err)
    	}
    	tcases := []struct {
    		name               string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

            .containsExactly(
                fullpath("/with/absolute.jar"),
                fullpath("base/relative.jar"),
                fullpath("base/relative/dir"))
            .inOrder();
      }
    
      public void testGetClassPathFromManifest_leadingBlanks() throws IOException {
        File jarFile = new File("base/some.jar");
        Manifest manifest = manifestClasspath(" relative.jar");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. pkg/kubelet/util/util_unix_test.go

    			expectedFullPath: "unix:/path/file.sock",
    		},
    	}
    	for _, test := range tests {
    		fullPath, err := LocalEndpoint(test.path, test.file)
    		if test.expectError {
    			assert.NotNil(t, err, "expected error")
    			continue
    		}
    		assert.Nil(t, err, "expected no error")
    		assert.Equal(t, test.expectedFullPath, fullPath)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/RequestWithPath.java

    
        /**
         * @param path
         */
        void setPath ( String path );
    
    
        /**
         * 
         * @param domain
         * @param server
         * @param fullPath
         */
        void setFullUNCPath ( String domain, String server, String fullPath );
    
    
        /**
         * @param resolve
         * 
         */
        void setResolveInDfs ( boolean resolve );
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
Back to top