Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 5,486 for expectHead (0.16 sec)

  1. src/cmd/go/internal/generate/generate_test.go

    		t.Errorf("split(%q): got %q expected %q", inLine, got, expected)
    	}
    
    	// Try another undefined variable as an extra check
    	os.Unsetenv("_Z")
    	inLine = "//go:generate -command CMD1 \"ab${_Z}cd\""
    	expected = []string{"-command", "CMD1", "abcd"}
    	got = g.split(inLine + "\n")
    
    	if !reflect.DeepEqual(got, expected) {
    		t.Errorf("split(%q): got %q expected %q", inLine, got, expected)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            value = "Fess,フェス";
            expected = Arrays.asList("Fess", "フェス");
            actual = Arrays.asList(KuromojiCSVUtil.parse(value));
            assertThat(actual, is(expected));
    
            value = "\"Fess,FESS\"";
            expected = Arrays.asList("\"Fess,FESS\"");
            actual = Arrays.asList(KuromojiCSVUtil.parse(value));
            assertThat(actual, is(expected));
    
            value = " ";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/securitycontext/accessors_test.go

    			t.Errorf("%d: expected %#v, got %#v", i, expected.RunAsUser, v)
    		}
    		if v := a.RunAsGroup(); !reflect.DeepEqual(expected.RunAsGroup, v) {
    			t.Errorf("%d: expected %#v, got %#v", i, expected.RunAsGroup, v)
    		}
    		if v := a.SeccompProfile(); !reflect.DeepEqual(expected.SeccompProfile, v) {
    			t.Errorf("%d: expected %#v, got %#v", i, expected.SeccompProfile, v)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  4. tests/integration/telemetry/policy/traffic_allow_any_test.go

    	"istio.io/istio/pkg/test/framework/components/prometheus"
    )
    
    func TestOutboundTrafficPolicy_AllowAny(t *testing.T) {
    	cases := []*TestCase{
    		{
    			Name:     "HTTP Traffic",
    			PortName: "http",
    			Expected: Expected{
    				Query: prometheus.Query{
    					Metric:      "istio_requests_total",
    					Aggregation: "sum",
    					Labels: map[string]string{
    						"reporter":                 "source",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/cert_key_test.go

    		name     string
    		lhs      *certKeyContent
    		rhs      *certKeyContent
    		expected bool
    	}{
    		{
    			name:     "both nil",
    			expected: true,
    		},
    		{
    			name:     "lhs nil",
    			rhs:      &certKeyContent{},
    			expected: false,
    		},
    		{
    			name:     "rhs nil",
    			lhs:      &certKeyContent{},
    			expected: false,
    		},
    		{
    			name:     "same",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 13:27:45 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/scope_container_test.go

    		actual := ctnScope.policy.(*mockPolicy).ph
    		if !reflect.DeepEqual(tc.expected, actual) {
    			t.Errorf("Test Case: %s", tc.name)
    			t.Errorf("Expected result to be %v, got %v", tc.expected, actual)
    		}
    	}
    }
    
    func TestContainerAccumulateProvidersHints(t *testing.T) {
    	tcases := []struct {
    		name     string
    		hp       []HintProvider
    		expected []map[string][]TopologyHint
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 11:25:55 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/labels_test.go

    	containerInfo := getContainerInfoFromAnnotations(annotations)
    	if !reflect.DeepEqual(containerInfo, expected) {
    		t.Errorf("expected %v, got %v", expected, containerInfo)
    	}
    	if v, ok := annotations[opts.Annotations[0].Name]; !ok || v != opts.Annotations[0].Value {
    		t.Errorf("expected annotation %s to exist got %v, %v", opts.Annotations[0].Name, ok, v)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 22:43:36 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/testdata/framefuzz.test

        inlining_test.go:102: not in expected set, but also inlinable: "mask6"
        inlining_test.go:102: not in expected set, but also inlinable: "AddrPort.isZero"
        inlining_test.go:102: not in expected set, but also inlinable: "stringsLastIndexByte"
        inlining_test.go:102: not in expected set, but also inlinable: "Addr.isZero"
        inlining_test.go:102: not in expected set, but also inlinable: "bePutUint32"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			input:    int64(5),
    			period:   uint64(10000),
    			expected: minQuotaPeriod,
    		},
    		{
    			msg:      "5 input 5k period and default quota expected",
    			input:    int64(5),
    			period:   uint64(5000),
    			expected: minQuotaPeriod,
    		},
    		{
    			msg:      "9 input 10k period and default quota expected",
    			input:    int64(9),
    			period:   uint64(10000),
    			expected: minQuotaPeriod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/v1alpha1/defaults_test.go

    				},
    			},
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			original := test.original
    			expected := test.expected
    			legacyscheme.Scheme.Default(original)
    			if !apiequality.Semantic.DeepEqual(original, expected) {
    				t.Error(cmp.Diff(expected, original))
    			}
    		})
    	}
    }
    
    func TestDefaultAdmissionPolicyBinding(t *testing.T) {
    	denyAction := v1alpha1.DenyAction
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top