Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for lccc (0.1 sec)

  1. src/context/x_test.go

    	cancelChild CancelFunc
    }
    
    func (ccc *customCauseContext) Deadline() (deadline time.Time, ok bool) {
    	return
    }
    
    func (ccc *customCauseContext) Done() <-chan struct{} {
    	ccc.mu.Lock()
    	defer ccc.mu.Unlock()
    	return ccc.done
    }
    
    func (ccc *customCauseContext) Err() error {
    	ccc.mu.Lock()
    	defer ccc.mu.Unlock()
    	return ccc.err
    }
    
    func (ccc *customCauseContext) Value(key any) any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

            k8s:
              resources:
                requests:
                  cpu: 111m
                  memory: 111Mi
          - name: user-ingressgateway
            enabled: true
            label:
              ccc: ccc-val
              ddd: ddd-val
            k8s:
              resources:
                requests:
                  cpu: 222m
                  memory: 888Mi
          - namespace: user-ingressgateway-ns
            name: ilb-gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        cache.evictAll()
    
        // Create a new value in its place.
        set("k1", "ccc", "ccc")
        assertThat(cache.size()).isEqualTo(6)
    
        // Committing the detached editor should not change the cache's size.
        editor.commit()
        assertThat(cache.size()).isEqualTo(6)
        assertValue("k1", "ccc", "ccc")
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. src/runtime/runtime_test.go

    	// This isn't really an exhaustive test of == on strings, it's
    	// just a convenient way of documenting (via eqstring_generic)
    	// what == does.
    	s := []string{
    		"",
    		"a",
    		"c",
    		"aaa",
    		"ccc",
    		"cccc"[:3], // same contents, different string
    		"1234567890",
    	}
    	for _, s1 := range s {
    		for _, s2 := range s {
    			x := s1 == s2
    			y := eqstring_generic(s1, s2)
    			if x != y {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. pkg/slices/slices_test.go

    				return len(s) > 1
    			},
    			want: []string{},
    		},
    		{
    			name:     "filter elements with length greater than 1",
    			elements: []string{"a", "bbb", "ccc", ""},
    			fn: func(s string) bool {
    				return len(s) > 1
    			},
    			want: []string{"bbb", "ccc"},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			filter := Filter(tt.elements, tt.fn)
    			if !reflect.DeepEqual(filter, tt.want) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/gccgo.go

    		}
    		ldflags = append(ldflags, goLibBegin...)
    		ldflags = append(ldflags, "-lgo", "-lgcc_s", "-lgcc", "-lc", "-lgcc")
    
    	case "shared":
    		if cfg.Goos != "aix" {
    			ldflags = append(ldflags, "-zdefs")
    		}
    		ldflags = append(ldflags, "-shared", "-nostdlib", "-lgo", "-lgcc_s", "-lgcc", "-lc")
    
    	default:
    		base.Fatalf("-buildmode=%s not supported for gccgo", buildmode)
    	}
    
    	switch buildmode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/validation/validation_test.go

    	for name, testCase := range map[string]struct {
    		ccc          componentbaseconfig.ClientConnectionConfiguration
    		expectedErrs field.ErrorList
    	}{
    		"successful 0 value": {
    			ccc:          componentbaseconfig.ClientConnectionConfiguration{Burst: 0},
    			expectedErrs: field.ErrorList{},
    		},
    		"successful 5 value": {
    			ccc:          componentbaseconfig.ClientConnectionConfiguration{Burst: 5},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. 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"]))
            property.addAll("${'321'.substring(2)}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

            ImmutableSortedSet.<String>orderedBy(STRING_LENGTH).add("ccc", "bb", "ccc");
        ImmutableSortedSet.Builder<String> zat =
            ImmutableSortedSet.<String>orderedBy(STRING_LENGTH).add("a", "bb", "dddd", "ccc");
        ImmutableSortedSet<String> sortedSet = zis.combine(zat).build();
        assertThat(sortedSet).containsExactly("a", "bb", "ccc", "dddd").inOrder();
      }
    
      public void testEquals_bothDefaultOrdering() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  10. pkg/kubelet/network/dns/dns_test.go

    		},
    
    		{
    			desc:         "valid: 7 search paths",
    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB", "CCC", "DDD"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB", "CCC", "DDD"},
    			events:       []string{},
    		},
    
    		{
    			desc:         "valid: 32 search paths",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top