Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for bbbb (0.04 sec)

  1. src/strings/builder_test.go

    	b.WriteString("aaa")
    	s := b.String()
    	check(t, &b, "aaa")
    	b.Reset()
    	check(t, &b, "")
    
    	// Ensure that writing after Reset doesn't alter
    	// previously returned strings.
    	b.WriteString("bbb")
    	check(t, &b, "bbb")
    	if want := "aaa"; s != want {
    		t.Errorf("previous String result changed after Reset: got %q; want %q", s, want)
    	}
    }
    
    func TestBuilderGrow(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/settings/BadWordSettingsTest.java

                settings.badword().add("");
                fail();
            } catch (IllegalArgumentException e) {
                assertTrue(true);
            }
    
            try {
                settings.badword().add("aaaa bbb");
                fail();
            } catch (IllegalArgumentException e) {
                assertTrue(true);
            }
        }
    
        @Test
        public void test_setAndGetAsArray() {
            String value1 = "a";
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            assertValueIs(expectedValue)
    
            where:
            value                 | expectedValue
            []                    | []
            ["aaa"]               | ["aaa"]
            ["aaa", "bbb", "ccc"] | ["aaa", "bbb", "ccc"]
        }
    
        def "appends value to string property from array with GString value using addAll"() {
            given:
            property.set(toMutable(["abc"]))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java

            assertEquals("test.txt", ftpInfo.getName());
            assertEquals("ftp://123.123.123.123/", ftpInfo.toUrl("/"));
            assertEquals("ftp://123.123.123.123/aaa/bbb/ccc.txt", ftpInfo.toUrl("/aaa//bbb/ccc.txt"));
            assertEquals("ftp://123.123.123.123/ccc.txt", ftpInfo.toUrl("/aaa/../ccc.txt"));
    
            value = "ftp://123.123.123.123/test test.txt";
            ftpInfo = new FtpClient.FtpInfo(value);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. cni/pkg/plugin/cnieventclient_test.go

    	eventC := CNIEventClient{
    		client: c,
    		url:    address + constants.CNIAddEventPath,
    	}
    	return eventC
    }
    
    var fakeCmdArgs = &skel.CmdArgs{
    	Netns:       "someNetNS",
    	IfName:      "ethBro",
    	ContainerID: "bbb-eee-www",
    }
    
    var (
    	fakeIP                 = net.ParseIP("99.9.9.9")
    	fakeGW                 = net.ParseIP("88.9.9.9")
    	fakeIDX                = 0
    	fakePrevResultIPConfig = cniv1.IPConfig{
    		Interface: &fakeIDX,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    		pod := st.MakePod().Name("normal").Node("nodeA")
    		for _, l := range labels {
    			pod.Label(l, "")
    		}
    		return pod.Obj()
    	}
    	normalPodA := newPod("aaa")
    	normalPodB := newPod("bbb")
    	normalPodAB := newPod("aaa", "bbb")
    	nodeA := &v1.Node{ObjectMeta: metav1.ObjectMeta{Name: "nodeA", Labels: map[string]string{"hostname": "nodeA"}}}
    
    	tests := []struct {
    		name                    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  7. src/math/big/natconv_test.go

    	}
    
    	b.StopTimer()
    	resetTable(cacheBase10.table[:])
    	leafSize = originalLeafSize
    	b.StartTimer()
    }
    
    func resetTable(table []divisor) {
    	if table != nil && table[0].bbb != nil {
    		for i := 0; i < len(table); i++ {
    			table[i].bbb = nil
    			table[i].nbits = 0
    			table[i].ndigits = 0
    		}
    	}
    }
    
    func TestStringPowers(t *testing.T) {
    	var p Word
    	for b := 2; b <= 16; b++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/ipset_test.go

    			expectedEntries: []string{"FE80::8329,tcp:8800,2001:db8::/32"},
    		},
    		{
    			name: "ipset IPv6 sync, current entries removed",
    			set: &utilipset.IPSet{
    				Name: "bbb",
    			},
    			setType:         utilipset.HashIPPortNet,
    			ipv6:            true,
    			activeEntries:   nil,
    			currentEntries:  []string{"FE80::8329,udp:8801,2001:db8::/32"},
    			expectedEntries: nil,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. src/runtime/runtime-gdb_test.go

    		t.Fatalf("goroutine 1 bt at the end failed: %s", bl)
    	}
    }
    
    const backtraceSource = `
    package main
    
    //go:noinline
    func aaa() bool { return bbb() }
    
    //go:noinline
    func bbb() bool { return ccc() }
    
    //go:noinline
    func ccc() bool { return ddd() }
    
    //go:noinline
    func ddd() bool { return f() }
    
    //go:noinline
    func eee() bool { return true }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/types_pluginargs.go

    	// e.g. if group is ["example.com"], it will ignore all resource names that begin
    	// with "example.com", such as "example.com/aaa" and "example.com/bbb".
    	// A resource group name can't contain '/'.
    	IgnoredResourceGroups []string
    
    	// ScoringStrategy selects the node resource scoring strategy.
    	ScoringStrategy *ScoringStrategy
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top