Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,466 for JOIN (0.09 sec)

  1. guava/src/com/google/common/base/Joiner.java

       */
      public final String join(Iterable<? extends @Nullable Object> parts) {
        return join(parts.iterator());
      }
    
      /**
       * Returns a string containing the string representation of each of {@code parts}, using the
       * previously configured separator between each.
       *
       * @since 11.0
       */
      public final String join(Iterator<? extends @Nullable Object> parts) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. .github/workflows/extract-unit-test-split.jq

    .
     | map(select(.unitTests) | .name)
     | to_entries
     | group_by(.key % 10)
     | map({
         name: map(.value) | join(", "),
         tasks: map(.value + ":test") | join(" "),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 11 08:08:26 UTC 2021
    - 171 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/inst_test.go

    	var output []byte
    	var err error
    	filename := "ptrsort.go"
    	exename := "ptrsort"
    	outname := "ptrsort.out"
    	gotool := testenv.GoToolPath(t)
    	dest := filepath.Join(t.TempDir(), exename)
    	cmd := testenv.Command(t, gotool, "build", "-o", dest, filepath.Join("testdata", filename))
    	if output, err = cmd.CombinedOutput(); err != nil {
    		t.Fatalf("Failed: %v:\nOutput: %s\n", err, output)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/token.go

    	createCmd.Flags().BoolVar(&printJoinCommand,
    		"print-join-command", false, "Instead of printing only the token, print the full 'kubeadm join' flag needed to join the cluster using the token.")
    	createCmd.Flags().StringVar(&certificateKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/AbstractImmutableMapMapInterfaceTest.java

        }
    
        assertEquals("{" + JOINER.join(map.entrySet()) + "}", map.toString());
        assertEquals("[" + JOINER.join(map.entrySet()) + "]", map.entrySet().toString());
        assertEquals("[" + JOINER.join(map.keySet()) + "]", map.keySet().toString());
        assertEquals("[" + JOINER.join(map.values()) + "]", map.values().toString());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 09 02:18:08 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/AbstractImmutableSortedMapMapInterfaceTest.java

        }
    
        assertEquals("{" + joiner.join(map.entrySet()) + "}", map.toString());
        assertEquals("[" + joiner.join(map.entrySet()) + "]", map.entrySet().toString());
        assertEquals("[" + joiner.join(map.keySet()) + "]", map.keySet().toString());
        assertEquals("[" + joiner.join(map.values()) + "]", map.values().toString());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 17 01:34:55 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/util.go

    	if limit == 0 || limit == 1 {
    		// Assume limit >1, but make sure we dpn't crash if someone does pass those
    		return strings.Join(data, ", ")
    	}
    	if len(data) == 0 {
    		return ""
    	}
    	if len(data) < limit {
    		return strings.Join(data, ", ")
    	}
    	return strings.Join(data[:limit-1], ", ") + fmt.Sprintf(", and %d others", len(data)-limit+1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1021 bytes
    - Viewed (0)
  8. src/cmd/go/internal/imports/scan_test.go

    		}
    		t.Run(dir.Name(), func(t *testing.T) {
    			tagsData, err := os.ReadFile(filepath.Join("testdata", dir.Name(), "tags.txt"))
    			if err != nil {
    				t.Fatalf("error reading tags: %v", err)
    			}
    			tags := make(map[string]bool)
    			for _, t := range strings.Fields(string(tagsData)) {
    				tags[t] = true
    			}
    
    			wantData, err := os.ReadFile(filepath.Join("testdata", dir.Name(), "want.txt"))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 21:55:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. src/io/fs/walk_test.go

    		n.mark = 0
    	})
    }
    
    func TestIssue51617(t *testing.T) {
    	dir := t.TempDir()
    	for _, sub := range []string{"a", filepath.Join("a", "bad"), filepath.Join("a", "next")} {
    		if err := os.Mkdir(filepath.Join(dir, sub), 0755); err != nil {
    			t.Fatal(err)
    		}
    	}
    	bad := filepath.Join(dir, "a", "bad")
    	if err := os.Chmod(bad, 0); err != nil {
    		t.Fatal(err)
    	}
    	defer os.Chmod(bad, 0700) // avoid errors on cleanup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 15:21:18 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovyapplication/multi/utilities/StringUtils.groovy.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import ${basePackagePrefix.raw}list.LinkedList
    
    class StringUtils {
        static String join(LinkedList source) {
            return JoinUtils.join(source)
        }
    
        static LinkedList split(String source) {
            return SplitUtils.split(source)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 306 bytes
    - Viewed (0)
Back to top