Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 447 for Mainer (0.14 sec)

  1. android/guava-tests/test/com/google/common/base/JoinerTest.java

      }
    
      private static void checkNoOutput(Joiner joiner, Iterable<Integer> set) {
        assertEquals("", joiner.join(set));
        assertEquals("", joiner.join(set.iterator()));
    
        Object[] array = Lists.newArrayList(set).toArray(new Integer[0]);
        assertEquals("", joiner.join(array));
    
        StringBuilder sb1FromIterable = new StringBuilder();
        assertSame(sb1FromIterable, joiner.appendTo(sb1FromIterable, set));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/base/JoinerTest.java

      }
    
      private static void checkNoOutput(Joiner joiner, Iterable<Integer> set) {
        assertEquals("", joiner.join(set));
        assertEquals("", joiner.join(set.iterator()));
    
        Object[] array = Lists.newArrayList(set).toArray(new Integer[0]);
        assertEquals("", joiner.join(array));
    
        StringBuilder sb1FromIterable = new StringBuilder();
        assertSame(sb1FromIterable, joiner.appendTo(sb1FromIterable, set));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/sidecar.go

    	WaitForConfigOrFail(t test.Failer, accept func(*admin.ConfigDump) (bool, error), options ...retry.Option)
    
    	// Clusters for the Envoy instance
    	Clusters() (*admin.Clusters, error)
    	ClustersOrFail(t test.Failer) *admin.Clusters
    
    	// Listeners for the Envoy instance
    	Listeners() (*admin.Listeners, error)
    	ListenersOrFail(t test.Failer) *admin.Listeners
    
    	// Logs returns the logs for the sidecar container
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. cmd/main.go

    	banner := &strings.Builder{}
    	fmt.Fprintln(banner, color.Bold("%s version %s (commit-id=%s)", c.App.Name, c.App.Version, CommitID))
    	fmt.Fprintln(banner, color.Blue("Runtime:")+color.Bold(" %s %s/%s", runtime.Version(), runtime.GOOS, runtime.GOARCH))
    	fmt.Fprintln(banner, color.Blue("License:")+color.Bold(" GNU AGPLv3 - https://www.gnu.org/licenses/agpl-3.0.html"))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. common/scripts/copyright-banner-go.txt

    Istio Automation <******@****.***> 1592249297 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 15 19:28:17 UTC 2020
    - 586 bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/SourceFolder.java

            }
            path = name;
        }
    
        private static final Joiner JOINER = Joiner.on("|");
    
        @Override
        public void appendNode(Node node) {
            Map<String, Object> attributes = new LinkedHashMap<>();
            attributes.put("including", JOINER.join(includes));
            attributes.put("excluding", JOINER.join(excludes));
            attributes.put("output", output);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. docs/en/overrides/main.html

            <img class="sponsor-image" src="/img/sponsors/cryptapi-banner.svg" />
          </a>
        </div>
        <div class="item">
          <a title="Build, run and scale your apps on a modern, reliable, and secure PaaS." style="display: block; position: relative;" href="https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" target="_blank">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. pkg/test/failer_test.go

    		if err := Wrap(func(t Failer) {
    			t.Fatalf("failed")
    		}); err == nil {
    			t.Fatalf("expected error, got none")
    		}
    	})
    	t.Run("success", func(t *testing.T) {
    		if err := Wrap(func(t Failer) {}); err != nil {
    			t.Fatalf("expected no error, got: %v", err)
    		}
    	})
    	t.Run("cleanup", func(t *testing.T) {
    		done := false
    		if err := Wrap(func(t Failer) {
    			t.Cleanup(func() {
    				done = true
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 07 18:42:17 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. src/make.bat

    if x%3==x--no-banner...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptTemplateBindingFactory.java

                    @Override
                    public String apply(String jvmOpt) {
                        return "\"" + escapeWindowsJvmOpt(jvmOpt) + "\"";
                    }
                });
    
                Joiner spaceJoiner = Joiner.on(" ");
                return spaceJoiner.join(quotedDefaultJvmOpts);
            } else {
                if (defaultJvmOpts == null) {
                    return "";
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top