Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for ccc2 (0.06 sec)

  1. pkg/printers/internalversion/printers_test.go

    				{Cells: []interface{}{"ccc1", "10.1.0.0/16,fd00:1:1::/64", "<unknown>"}},
    				{Cells: []interface{}{"ccc2", "10.2.0.0/16,fd00:2:1::/64", "<unknown>"}},
    			},
    		},
    		{
    			// Test name, DualStack with node selector, wide.
    			options: printers.GenerateOptions{Wide: true},
    			expected: []metav1.TableRow{
    				// Columns: Name, CIDRs, Age.
    				{Cells: []interface{}{"ccc1", "10.1.0.0/16,fd00:1:1::/64", "<unknown>"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/hash/crc32/crc32_test.go

    	for _, length := range lengths {
    		p := make([]byte, length)
    		_, _ = rand.Read(p)
    		crcInit := uint32(rand.Int63())
    		crc1 := crcFunc1(crcInit, p)
    		crc2 := crcFunc2(crcInit, p)
    		if crc1 != crc2 {
    			t.Errorf("mismatch: 0x%x vs 0x%x (buffer length %d)", crc1, crc2, length)
    		}
    	}
    }
    
    // TestSimple tests the simple generic algorithm.
    func TestSimple(t *testing.T) {
    	tab := simpleMakeTable(IEEE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K 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. src/math/big/float_test.go

    			}
    
    			// test that x.SetFloat64(float64(f)).Float32() == f
    			var x2 Float
    			out2, acc2 := x2.SetFloat64(float64(out)).Float32()
    			if !alike32(out2, out) || acc2 != Exact {
    				t.Errorf("idempotency test: got %g (%s); want %g (Exact)", out2, acc2, out)
    			}
    		}
    	}
    }
    
    func TestFloatFloat64(t *testing.T) {
    	const smallestNormalFloat64 = 2.2250738585072014e-308 // 1p-1022
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top