Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for absPath (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/yaml_test.go

    	rest := apiExtensionClient.Discovery().RESTClient()
    
    	// Discovery
    	{
    		result, err := rest.Get().
    			SetHeader("Accept", "application/yaml").
    			AbsPath("/apis", noxuDefinition.Spec.Group, noxuDefinition.Spec.Versions[0].Name).
    			DoRaw(context.TODO())
    		if err != nil {
    			t.Fatal(err, string(result))
    		}
    		obj, err := decodeYAML(result)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    				}
    				if cg != nil {
    					if strings.ContainsAny(abspath, "\r\n") {
    						// This should have been checked when the file path was first resolved,
    						// but we double check here just to be sure.
    						fatalf("internal error: ParseGo: abspath contains unexpected newline character: %q", abspath)
    					}
    					f.Preamble += fmt.Sprintf("#line %d %q\n", sourceLine(cg), abspath)
    					f.Preamble += commentText(cg) + "\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. src/path/filepath/path_test.go

    		t.Fatalf("%s: %s", root, err)
    	}
    
    	abspath, err := filepath.Abs("")
    	if err != nil {
    		t.Fatalf(`Abs("") error: %v`, err)
    	}
    	absinfo, err := os.Stat(abspath)
    	if err != nil || !os.SameFile(absinfo, info) {
    		t.Errorf(`Abs("")=%q, not the same file`, abspath)
    	}
    	if !filepath.IsAbs(abspath) {
    		t.Errorf(`Abs("")=%q, not an absolute path`, abspath)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. src/net/http/cgi/host_test.go

    }
    
    func TestCGIBasicGetAbsPath(t *testing.T) {
    	absPath, err := filepath.Abs(os.Args[0])
    	if err != nil {
    		t.Fatal(err)
    	}
    	testenv.MustHaveExec(t)
    	h := &Handler{
    		Path: absPath,
    		Root: "/test.cgi",
    	}
    	expectedMap := map[string]string{
    		"env-REQUEST_URI":     "/test.cgi?foo=bar&a=b",
    		"env-SCRIPT_FILENAME": absPath,
    		"env-SCRIPT_NAME":     "/test.cgi",
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. cmd/update.go

    	// Convert to absolute path
    	absPath, err := filepath.Abs(path)
    	if err != nil {
    		return t, fmt.Errorf("Unable to get absolute path of %s. %w", path, err)
    	}
    
    	// Version is minio non-standard, we will use minio binary's
    	// ModTime as release time.
    	fi, err := Stat(absPath)
    	if err != nil {
    		return t, fmt.Errorf("Unable to get ModTime of %s. %w", absPath, err)
    	}
    
    	// Return the ModTime
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/gccgo.go

    			args = append(args, "-ffile-prefix-map="+b.WorkDir+"=/tmp/go-build")
    		}
    		if fsys.OverlayFile != "" {
    			for _, name := range gofiles {
    				absPath := mkAbs(p.Dir, name)
    				overlayPath, ok := fsys.OverlayPath(absPath)
    				if !ok {
    					continue
    				}
    				toPath := absPath
    				// gccgo only applies the last matching rule, so also handle the case where
    				// BuildTrimpath is true and the path is relative to base.Cwd().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. cmd/endpoint.go

    func checkCrossDeviceMounts(endpoints Endpoints) (err error) {
    	var absPaths []string
    	for _, endpoint := range endpoints {
    		if endpoint.IsLocal {
    			var absPath string
    			absPath, err = filepath.Abs(endpoint.Path)
    			if err != nil {
    				return err
    			}
    			absPaths = append(absPaths, absPath)
    		}
    	}
    	return mountinfo.CheckCrossDevice(absPaths)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    func (c *PeerEndpointLeaseController) Run(stopCh <-chan struct{}) {
    	// wait until process is ready
    	wait.PollImmediateUntil(100*time.Millisecond, func() (bool, error) {
    		var code int
    		c.client.CoreV1().RESTClient().Get().AbsPath("/readyz").Do(context.TODO()).StatusCode(&code)
    		return code == http.StatusOK, nil
    	}, stopCh)
    
    	wait.NonSlidingUntil(func() {
    		if err := c.UpdatePeerEndpointLeases(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/wait.go

    		context.Background(),
    		constants.KubernetesAPICallRetryInterval,
    		w.timeout,
    		true, func(ctx context.Context) (bool, error) {
    			healthStatus := 0
    			w.client.Discovery().RESTClient().Get().AbsPath("/healthz").Do(ctx).StatusCode(&healthStatus)
    			if healthStatus != http.StatusOK {
    				return false, nil
    			}
    			return true, nil
    		})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. cmd/kube-apiserver/app/testing/testserver.go

    		err = wait.Poll(100*time.Millisecond, time.Minute, func() (bool, error) {
    			select {
    			case err := <-errCh:
    				return false, err
    			default:
    			}
    
    			req := client.CoreV1().RESTClient().Get().AbsPath("/healthz")
    			// The storage version bootstrap test wraps the storage version post-start
    			// hook, so the hook won't become health when the server bootstraps
    			if instanceOptions.StorageVersionWrapFunc != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top