Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 971 for JOIN (0.08 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

                @Managed
                interface ManagedType {
                    ${properties.dsl.join('\n')}
                }
    
                class PluginRules extends RuleSource {
                    @Model
                    void createModel(ManagedType p) {
                        ${properties.assignment.join('\n')}
                    }
    
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/internal/obj/ppc64/asm_test.go

    	}
    
    	for _, pgm := range pgms {
    		tmpfile := filepath.Join(dir, "x.s")
    		err = os.WriteFile(tmpfile, pgm.text, 0644)
    		if err != nil {
    			t.Fatalf("can't write output: %v\n", err)
    		}
    		cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "asm", "-S", "-o", filepath.Join(dir, "test.o"), tmpfile)
    		cmd.Env = append(os.Environ(), "GOOS=linux", "GOARCH=ppc64le")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionPropertyIntegrationTest.groovy

                    @TaskAction
                    void go() {
                        def file = outputFile.asFile.get()
                        file.text = inputFiles.get()*.asFile.text.join(',')
                    }
                }
    
                task createFile1(type: FileOutputTask)
                task createFile2(type: FileOutputTask)
                task merge(type: MergeTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/fsys/fsys_test.go

    		t.Fatal(err)
    	}
    	cwd = filepath.Join(t.TempDir(), "root")
    	if err := os.Mkdir(cwd, 0777); err != nil {
    		t.Fatal(err)
    	}
    	if err := os.Chdir(cwd); err != nil {
    		t.Fatal(err)
    	}
    	t.Cleanup(func() {
    		if err := os.Chdir(prevwd); err != nil {
    			t.Fatal(err)
    		}
    	})
    
    	a := txtar.Parse([]byte(config))
    	for _, f := range a.Files {
    		name := filepath.Join(cwd, f.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  7. 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)
  8. pkg/controller/resourcequota/resource_quota_controller_test.go

    					v1.ResourceCPU:    resource.MustParse("0"),
    					v1.ResourceMemory: resource.MustParse("0"),
    					v1.ResourcePods:   resource.MustParse("0"),
    				},
    			},
    			expectedActionSet: sets.NewString(
    				strings.Join([]string{"update", "resourcequotas", "status"}, "-"),
    			),
    			items: newTestPods(),
    		},
    		"matching-best-effort-scoped-quota": {
    			gvr: v1.SchemeGroupVersion.WithResource("pods"),
    			quota: v1.ResourceQuota{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  9. src/debug/buildinfo/buildinfo_test.go

    		gopathDir := t.TempDir()
    		pkgDir := filepath.Join(gopathDir, "src/example.com/m")
    		if err := os.MkdirAll(pkgDir, 0777); err != nil {
    			t.Fatal(err)
    		}
    		helloPath := filepath.Join(pkgDir, "hello.go")
    		helloData := []byte("package main\nfunc main() {}\n")
    		if err := os.WriteFile(helloPath, helloData, 0666); err != nil {
    			t.Fatal(err)
    		}
    		outPath := filepath.Join(gopathDir, path.Base(t.Name()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. tools/docker-builder/main.go

    	os, arch, _ := strings.Cut(a, "/")
    	return map[string]string{
    		"TARGET_OS":        os,
    		"TARGET_ARCH":      arch,
    		"TARGET_OUT":       filepath.Join(testenv.IstioSrc, "out", fmt.Sprintf("%s_%s", os, arch)),
    		"TARGET_OUT_LINUX": filepath.Join(testenv.IstioSrc, "out", fmt.Sprintf("linux_%s", arch)),
    	}
    }
    
    // RunCommand runs a command for the repo, with standard environment variables set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top