Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for tccc (0.04 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. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

                return defaultClazz; // just use the default type
            }
    
            // TCCL allows surrounding container to influence class loading policy
            final ClassLoader tccl = Thread.currentThread().getContextClassLoader();
            if (tccl != null) {
                try {
                    return tccl.loadClass(name);
                } catch (final Exception e) {
                    // drop through...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/math/big/float_test.go

    		// inf
    		{"Inf", float32(math.Inf(+1)), Exact},
    	} {
    		for i := 0; i < 2; i++ {
    			// test both signs
    			tx, tout, tacc := test.x, test.out, test.acc
    			if i != 0 {
    				tx = "-" + tx
    				tout = -tout
    				tacc = -tacc
    			}
    
    			// conversion should match strconv where syntax is agreeable
    			if f, err := strconv.ParseFloat(tx, 32); err == nil && !alike32(float32(f), tout) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top