Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 724 for JOIN (0.1 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    fullMessage = join(fullMessage, "Unknown host " + exceptionMessage);
                } else if (!fullMessage.contains(exceptionMessage)) {
                    fullMessage = join(fullMessage, exceptionMessage);
                }
    
                if (!dejaVu.add(t)) {
                    fullMessage = join(fullMessage, "[CIRCULAR REFERENCE]");
                    break;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/JavaPluginImplementation.groovy

            sourceFile << """
                import ${Action.name};
                import ${Project.name};
                import ${Plugin.name};
                import ${Task.name};
                ${read.requiredImports().collect { "import $it;" }.join("\n")}
    
                public class SneakyPlugin implements Plugin<Project> {
                    public void apply(Project project) {
                        Object value = ${read.javaExpression};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/clean/clean.go

    			subdirs, _ := filepath.Glob(filepath.Join(str.QuoteGlob(dir), "[0-9a-f][0-9a-f]"))
    			printedErrors := false
    			if len(subdirs) > 0 {
    				if err := sh.RemoveAll(subdirs...); err != nil && !printedErrors {
    					printedErrors = true
    					base.Error(err)
    				}
    			}
    
    			logFile := filepath.Join(dir, "log.txt")
    			if err := sh.RemoveAll(logFile); err != nil && !printedErrors {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/envcmd/env.go

    		return nil
    	}
    	cmd := b.GccCmd(".", "")
    
    	join := func(s []string) string {
    		q, err := quoted.Join(s)
    		if err != nil {
    			return strings.Join(s, " ")
    		}
    		return q
    	}
    
    	ret := []cfg.EnvVar{
    		// Note: Update the switch in runEnv below when adding to this list.
    		{Name: "CGO_CFLAGS", Value: join(cflags)},
    		{Name: "CGO_CPPFLAGS", Value: join(cppflags)},
    		{Name: "CGO_CXXFLAGS", Value: join(cxxflags)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	kind: JoinConfiguration
    //
    // To print the defaults for "init" and "join" actions use the following commands:
    //
    //	kubeadm config print init-defaults
    //	kubeadm config print join-defaults
    //
    // The list of configuration types that must be included in a configuration file depends by the action you are
    // performing (init or join) and by the configuration options you are going to use (defaults or advanced customization).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/bug/bug.go

    // It ignores failures.
    func printGlibcVersion(w io.Writer) {
    	tempdir := os.TempDir()
    	if tempdir == "" {
    		return
    	}
    	src := []byte(`int main() {}`)
    	srcfile := filepath.Join(tempdir, "go-bug.c")
    	outfile := filepath.Join(tempdir, "go-bug")
    	err := os.WriteFile(srcfile, src, 0644)
    	if err != nil {
    		return
    	}
    	defer os.Remove(srcfile)
    	cmd := exec.Command("gcc", "-o", outfile, srcfile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/runtime/pprof/protomem_test.go

    		if sampleToString(sample) == expectedSample {
    			s = sample
    			break
    		}
    	}
    	if s == nil {
    		t.Fatalf("expected \n%s\ngot\n%s", expectedSample, strings.Join(profileToStrings(p), "\n"))
    	}
    	loc := s.Location[0]
    	actual := strings.Join(locationToStrings(loc, nil), ";")
    	if expectedLocation != actual && expectedLocationNewInliner != actual {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/dryrun/dryrun.go

    }
    
    // PrintDryRunFile is a helper method around PrintDryRunFiles
    func PrintDryRunFile(fileName, realDir, printDir string, w io.Writer) error {
    	return PrintDryRunFiles([]FileToPrint{
    		NewFileToPrint(filepath.Join(realDir, fileName), filepath.Join(printDir, fileName)),
    	}, w)
    }
    
    // PrintDryRunFiles prints the contents of the FileToPrints given to it to the writer w
    func PrintDryRunFiles(files []FileToPrint, w io.Writer) error {
    	errs := []error{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/volume/testing/volume_host.go

    }
    
    func (f *fakeVolumeHost) GetPluginDir(podUID string) string {
    	return filepath.Join(f.rootDir, "plugins", podUID)
    }
    
    func (f *fakeVolumeHost) GetVolumeDevicePluginDir(pluginName string) string {
    	return filepath.Join(f.rootDir, "plugins", pluginName, "volumeDevices")
    }
    
    func (f *fakeVolumeHost) GetPodsDir() string {
    	return filepath.Join(f.rootDir, "pods")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    		t.Run(name, func(t *testing.T) {
    			t.Parallel()
    
    			dir := newTempDir(t)
    			defer dir.RemoveAll(t)
    
    			// build Go code in libfuzzer mode to a c-archive
    			outPath := dir.Join(name)
    			archivePath := dir.Join(name + ".a")
    			mustRun(t, config.goCmd("build", "-buildmode=c-archive", "-o", archivePath, srcPath(tc.goSrc)))
    
    			// build C code (if any) and link with Go code
    			cmd, err := cc(config.cFlags...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top