Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 122 for parentDir (0.59 sec)

  1. pkg/volume/csi/csi_mounter.go

    	}
    
    	// create target_dir before call to NodePublish
    	parentDir := filepath.Dir(dir)
    	if err := os.MkdirAll(parentDir, 0750); err != nil {
    		return errors.New(log("mounter.SetUpAt failed to create dir %#v:  %v", parentDir, err))
    	}
    	klog.V(4).Info(log("created target path successfully [%s]", parentDir))
    
    	nodePublishSecrets = map[string]string{}
    	if secretRef != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    var overlyCautiousIllegalFileCharacters = regexp.MustCompile(`[^(\w/.)]`)
    
    // computeDiscoverCacheDir takes the parentDir and the host and comes up with a "usually non-colliding" name.
    func computeDiscoverCacheDir(parentDir, host string) string {
    	// strip the optional scheme from host if its there:
    	schemelessHost := strings.Replace(strings.Replace(host, "https://", "", 1), "http://", "", 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	var parentPath, parentDir, parentRoot string
    	parentIsStd := false
    	if parent != nil {
    		parentPath = parent.ImportPath
    		parentDir = parent.Dir
    		parentRoot = parent.Root
    		parentIsStd = parent.Standard
    	}
    	return resolveImportPath(path, parentPath, parentDir, parentRoot, parentIsStd)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/fetch.go

    	// safe to do because the lock file ensures that their writers are no longer
    	// active.
    	parentDir := filepath.Dir(dir)
    	tmpPrefix := filepath.Base(dir) + ".tmp-"
    	if old, err := filepath.Glob(filepath.Join(str.QuoteGlob(parentDir), str.QuoteGlob(tmpPrefix)+"*")); err == nil {
    		for _, path := range old {
    			RemoveAll(path) // best effort
    		}
    	}
    	if dirExists {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. src/os/exec/exec_test.go

    	if dir == "." {
    		t.Skip("skipping; running test at root somehow")
    	}
    	parentDir := filepath.Dir(dir) // "/tmp/go-buildNNNN/os/exec"
    	dirBase := filepath.Base(dir)  // "_test"
    	if dirBase == "." {
    		t.Skipf("skipping; unexpected shallow dir of %q", dir)
    	}
    
    	cmd.Path = filepath.Join(dirBase, base)
    	cmd.Dir = parentDir
    
    	out, err := cmd.Output()
    	if err != nil {
    		t.Errorf("echo: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    			return errFileAccessDenied
    		}
    		return osErrToFileErr(err)
    	}
    
    	// Remove parent dir of the source file if empty
    	parentDir := pathutil.Dir(srcFilePath)
    	s.deleteFile(srcVolumeDir, parentDir, false, false)
    
    	return nil
    }
    
    func (s *xlStorage) bitrotVerify(ctx context.Context, partPath string, partSize int64, algo BitrotAlgorithm, sum []byte, shardSize int64) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  7. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                assert operation.id != null
                parent1Id = operation.id
                assert operation.parentId == null
            }
            1 * listener.start({ it.displayName == "<parent-2>" }, _) >> { BuildOperationDescriptor descriptor, BuildOperationState operation ->
                assert operation.id != null
                parent2Id = operation.id
                assert operation.parentId == null
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    	if !ok {
    		return module.Version{}
    	}
    	return pkg.mod
    }
    
    // Lookup returns the source directory, import path, and any loading error for
    // the package at path as imported from the package in parentDir.
    // Lookup requires that one of the Load functions in this package has already
    // been called.
    func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
    	if path == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

            notifications.op(CalculateTaskGraphBuildOperationType.Details, [buildPath: ":a:buildSrc"]).parentId == treeGraphOps[0].id
    
            notifications.op(NotifyTaskGraphWhenReadyBuildOperationType.Details, [buildPath: ":"]).parentId == treeGraphOps[2].id
            notifications.op(NotifyTaskGraphWhenReadyBuildOperationType.Details, [buildPath: ":a"]).parentId == treeGraphOps[2].id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. tests/associations_test.go

    	parent := Parent{}
    	DB.Create(&parent)
    
    	child := Child{ParentID: &parent.ID, Parent: &parent, Name: "HasManyCircularReference"}
    	child1 := Child{ParentID: &parent.ID, Parent: &parent, Name: "HasManyCircularReference1"}
    
    	parent.Children = []*Child{&child, &child1}
    	DB.Save(&parent)
    
    	var children []*Child
    	DB.Where("parent_id = ?", parent.ID).Find(&children)
    	if len(children) != len(parent.Children) ||
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top