Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 142 for JOIN (0.04 sec)

  1. cmd/xl-storage.go

    }
    
    func (s *xlStorage) moveToTrash(filePath string, recursive, immediatePurge bool) (err error) {
    	pathUUID := mustGetUUID()
    	targetPath := pathutil.Join(s.drivePath, minioMetaTmpDeletedBucket, pathUUID)
    
    	if recursive {
    		err = renameAll(filePath, targetPath, pathutil.Join(s.drivePath, minioMetaBucket))
    	} else {
    		err = Rename(filePath, targetPath)
    	}
    
    	var targetPath2 string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    	s := strings.Join([]string{`&ClusterRoleList{`,
    		`ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`,
    		`Items:` + repeatedStringForItems + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *PolicyRule) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&PolicyRule{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    	s := strings.Join([]string{`&ClusterRoleList{`,
    		`ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`,
    		`Items:` + repeatedStringForItems + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *PolicyRule) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&PolicyRule{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    	}{
    		{
    			name:           "simple specName",
    			specVolumeName: "spec-0",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("pods/%s/volumes/kubernetes.io~csi/%s/%s", testPodUID, "spec-0", "/mount")),
    		},
    		{
    			name:           "specName with dots",
    			specVolumeName: "test.spec.1",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("pods/%s/volumes/kubernetes.io~csi/%s/%s", testPodUID, "test.spec.1", "/mount")),
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go

    func sozGenerated(x uint64) (n int) {
    	return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63))))
    }
    func (this *CSIStorageCapacity) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&CSIStorageCapacity{`,
    		`ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    							Username: api.PrefixedClaimOrExpression{
    								Expression: `['yay', string(claims.email), 'panda'].join(' ')`,
    							},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1/generated.pb.go

    	}
    	repeatedStringForForZones += "}"
    	s := strings.Join([]string{`&EndpointHints{`,
    		`ForZones:` + repeatedStringForForZones + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *EndpointPort) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&EndpointPort{`,
    		`Name:` + valueToStringGenerated(this.Name) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 55.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    		target := filepath.Join(base.Cwd(), testBinary+cfg.ExeSuffix)
    		isNull := false
    
    		if testO != "" {
    			target = testO
    
    			if testODir {
    				if filepath.IsAbs(target) {
    					target = filepath.Join(target, testBinary+cfg.ExeSuffix)
    				} else {
    					target = filepath.Join(base.Cwd(), target, testBinary+cfg.ExeSuffix)
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers.go

    			err = errors.Join(fmt.Errorf("found containerfs.available for hard eviction. ignoring"))
    			hardContainerFsDisk = idx
    		}
    		if threshold.Signal == evictionapi.SignalContainerFsAvailable && !isHardEvictionThreshold(threshold) {
    			err = errors.Join(fmt.Errorf("found containerfs.available for soft eviction. ignoring"))
    			softContainerFsDisk = idx
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    	}
    	repeatedStringForForZones += "}"
    	s := strings.Join([]string{`&EndpointHints{`,
    		`ForZones:` + repeatedStringForForZones + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *EndpointPort) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&EndpointPort{`,
    		`Name:` + valueToStringGenerated(this.Name) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
Back to top