Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 455 for fullpath (0.33 sec)

  1. pkg/volume/hostpath/host_path.go

    	if util.CheckPersistentVolumeClaimModeBlock(r.options.PVC) {
    		return nil, fmt.Errorf("%s does not support block volume provisioning", r.plugin.GetPluginName())
    	}
    
    	fullpath := fmt.Sprintf("/tmp/%s/%s", r.basePath, uuid.NewUUID())
    
    	capacity := r.options.PVC.Spec.Resources.Requests[v1.ResourceName(v1.ResourceStorage)]
    	pv := &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_linux_test.go

    		tempDir, err := os.MkdirTemp("", "kubeproxy-config-change")
    		if err != nil {
    			return nil, "", fmt.Errorf("unable to create temporary directory: %v", err)
    		}
    		fullPath := filepath.Join(tempDir, "kube-proxy-config")
    		file, err := os.Create(fullPath)
    		if err != nil {
    			return nil, "", fmt.Errorf("unexpected error when creating temp file: %v", err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/proxy.go

    	}
    	return b, nil
    }
    
    func (p *proxyRepo) getBody(ctx context.Context, path string) (r io.ReadCloser, redactedURL string, err error) {
    	fullPath := pathpkg.Join(p.url.Path, path)
    
    	target := *p.url
    	target.Path = fullPath
    	target.RawPath = pathpkg.Join(target.RawPath, pathEscape(path))
    
    	resp, err := web.Get(web.DefaultSecurity, &target)
    	if err != nil {
    		return nil, "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/testflag.go

    	cf.Int("count", 0, "")
    	cf.String("cpu", "", "")
    	cf.StringVar(&testCPUProfile, "cpuprofile", "", "")
    	cf.BoolVar(&testFailFast, "failfast", false, "")
    	cf.StringVar(&testFuzz, "fuzz", "", "")
    	cf.Bool("fullpath", false, "")
    	cf.StringVar(&testList, "list", "", "")
    	cf.StringVar(&testMemProfile, "memprofile", "", "")
    	cf.String("memprofilerate", "", "")
    	cf.StringVar(&testMutexProfile, "mutexprofile", "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcweb/vcweb.go

    	defer func() {
    		if v := recover(); v != nil {
    			debug.PrintStack()
    			s.logger.Fatal(v)
    		}
    	}()
    
    	urlPath := req.URL.Path
    	if !strings.HasPrefix(urlPath, "/") {
    		urlPath = "/" + urlPath
    	}
    	clean := path.Clean(urlPath)[1:]
    	if clean == "" {
    		s.overview(w, req)
    		return
    	}
    	if clean == "help" {
    		s.help(w, req)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/sds_test.go

    		credentials.GenericScrtKey:    readFile(filepath.Join(certDir, "dns/key.pem")),
    		credentials.GenericScrtCaCert: readFile(filepath.Join(certDir, "dns/root-cert.pem")),
    	})
    	genericMtlsCertCrl = makeSecret("generic-mtls-crl", map[string]string{
    		credentials.GenericScrtCert:   readFile(filepath.Join(certDir, "dns/cert-chain.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows_test.go

    	srcname := "mydll.c"
    	err := os.WriteFile(filepath.Join(tmpdir, srcname), []byte(src), 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    	outname := "mydll.dll"
    	cmd := exec.Command("gcc", "-shared", "-s", "-Werror", "-o", outname, srcname)
    	cmd.Dir = tmpdir
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("failed to build dll: %v - %v", err, string(out))
    	}
    	dllpath := filepath.Join(tmpdir, outname)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/vendor.go

    		SilenceMissingStdImports: true,
    	}
    	_, pkgs := modload.LoadPackages(ctx, loadOpts, "all")
    
    	var vdir string
    	switch {
    	case filepath.IsAbs(vendorO):
    		vdir = vendorO
    	case vendorO != "":
    		vdir = filepath.Join(base.Cwd(), vendorO)
    	default:
    		vdir = filepath.Join(modload.VendorDir())
    	}
    	if err := os.RemoveAll(vdir); err != nil {
    		base.Fatal(err)
    	}
    
    	modpkgs := make(map[module.Version][]string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	return allErrs
    }
    
    func validateIssuerURL(issuerURL string, disallowedIssuers sets.Set[string], fldPath *field.Path) field.ErrorList {
    	if len(issuerURL) == 0 {
    		return field.ErrorList{field.Required(fldPath, "URL is required")}
    	}
    
    	return validateURL(issuerURL, disallowedIssuers, fldPath)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--service-account-key-file=" + filepath.Join(testCertsDir, "sa.pub"),
    				"--service-account-signing-key-file=" + filepath.Join(testCertsDir, "sa.key"),
    				"--service-account-issuer=https://kubernetes.default.svc.cluster.local",
    				"--client-ca-file=" + filepath.Join(testCertsDir, "ca.crt"),
    				"--tls-cert-file=" + filepath.Join(testCertsDir, "apiserver.crt"),
    				"--tls-private-key-file=" + filepath.Join(testCertsDir, "apiserver.key"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top