Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for joinTo (0.15 sec)

  1. src/cmd/go/internal/load/pkg.go

    func dirAndRoot(path string, dir, root string) (string, string) {
    	origDir, origRoot := dir, root
    	dir = filepath.Clean(dir)
    	root = filepath.Join(root, "src")
    	if !str.HasFilePathPrefix(dir, root) || path != "command-line-arguments" && filepath.Join(root, path) != dir {
    		// Look for symlinks before reporting error.
    		dir = expandPath(dir)
    		root = expandPath(root)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    			}
    			// -fdebug-prefix-map (or -ffile-prefix-map) requires an absolute "to"
    			// path (or it joins the path  with the working directory). Pick something
    			// that makes sense for the target platform.
    			var to string
    			if cfg.BuildContext.GOOS == "windows" {
    				to = filepath.Join(`\\_\_`, toPath)
    			} else {
    				to = filepath.Join("/_", toPath)
    			}
    			flags = append(slices.Clip(flags), prefixMapFlag+"="+from+"="+to)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    			lastUpdate = ss.meta.ExpiryLCConfigUpdatedAt
    			latestID = dID
    			latestExpLCConfig = ss.meta.ExpiryLCConfig
    		}
    		// avoid considering just created buckets as latest. Perhaps this site
    		// just joined cluster replication and yet to be sync'd
    		if ss.meta.CreatedAt.Equal(ss.meta.ExpiryLCConfigUpdatedAt) {
    			continue
    		}
    		if ss.meta.ExpiryLCConfigUpdatedAt.After(lastUpdate) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&FlowDistinguisherMethod{`,
    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *FlowSchema) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&FlowSchema{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    	}
    	repeatedStringForDrivers += "}"
    	s := strings.Join([]string{`&CSINodeSpec{`,
    		`Drivers:` + repeatedStringForDrivers + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *CSIStorageCapacity) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&CSIStorageCapacity{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&NonResourceAttributes{`,
    		`Path:` + fmt.Sprintf("%v", this.Path) + `,`,
    		`Verb:` + fmt.Sprintf("%v", this.Verb) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *NonResourceRule) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&NonResourceRule{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
    
        # Find the both quantized and unquantized dump file.
        folder = os.path.join(log_dir_path, os.listdir(log_dir_path)[0])
        unquantized_dump_file_path = os.path.join(
            log_dir_path, folder, 'unquantized_tensor_data.pb'
        )
        quantized_dump_file_path = os.path.join(
            log_dir_path, folder, 'quantized_tensor_data.pb'
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/generated.pb.go

    	repeatedStringForItems += "}"
    	s := strings.Join([]string{`&CronJobList{`,
    		`ListMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ListMeta), "ListMeta", "v1.ListMeta", 1), `&`, ``, 1) + `,`,
    		`Items:` + repeatedStringForItems + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *CronJobSpec) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&CronJobSpec{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	verifyGCBits(t, ArrayOf(2, ArrayOf(10000, Tptrscalar)), rep(2*10000, lit(1, 0)))
    	verifyGCBits(t, TypeOf([4]Xbigptrscalar{}), join(rep(3, join(rep(100, lit(1)), rep(100, lit(0)))), rep(100, lit(1))))
    	verifyGCBits(t, ArrayOf(4, Tbigptrscalar), join(rep(3, join(rep(100, lit(1)), rep(100, lit(0)))), rep(100, lit(1))))
    
    	verifyGCBitsSlice(t, TypeOf([]Xptr{}), 0, empty)
    	verifyGCBitsSlice(t, SliceOf(Tptr), 0, empty)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top