Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for Blah (0.11 sec)

  1. pilot/pkg/model/config_test.go

    	if !aSchemaExists || !reflect.DeepEqual(aSchema, a) {
    		t.Errorf("descriptor.GetByMessageName(a) => got %+v, want %+v", aType, a)
    	}
    	_, aSchemaNotExist := getByMessageName(schemas, "blah")
    	if aSchemaNotExist {
    		t.Errorf("descriptor.GetByMessageName(blah) => got true, want false")
    	}
    }
    
    func TestEventString(t *testing.T) {
    	cases := []struct {
    		in   model.Event
    		want string
    	}{
    		{model.EventAdd, "add"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    				"foo": "bar",
    			}).Obj(),
    			labels: map[string]string{
    				"foo": "bar",
    				"baz": "blah",
    			},
    			runPreFilter: true,
    		},
    		{
    			name: "node labels are subset",
    			pod: st.MakePod().NodeSelector(map[string]string{
    				"foo": "bar",
    				"baz": "blah",
    			}).Obj(),
    			labels: map[string]string{
    				"foo": "bar",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  3. src/cmd/cover/cfg_test.go

    		t.Errorf("'bad config file' test: wanted %s got %s", want, errmsg)
    	}
    
    	// Expect err if config file contains unknown stuff.
    	t.Logf("mangling in config")
    	writeFile(t, incfg, []byte("blah=foo\n"))
    	_, _, errmsg = runPkgCover(t, instdira, tag, incfg, mode,
    		apkgfiles, errExpected)
    	want = "error reading pkgconfig file"
    	if !strings.Contains(errmsg, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/apis/core/helper/helpers_test.go

    		}
    	}
    }
    
    func TestIsStandardResource(t *testing.T) {
    	testCases := []struct {
    		input  string
    		output bool
    	}{
    		{"cpu", true},
    		{"memory", true},
    		{"disk", false},
    		{"blah", false},
    		{"x.y.z", false},
    		{"hugepages-2Mi", true},
    		{"requests.hugepages-2Mi", true},
    	}
    	for i, tc := range testCases {
    		if IsStandardResourceName(core.ResourceName(tc.input)) != tc.output {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. pkg/credentialprovider/keyring.go

    }
    
    // URLsMatch checks whether the given target url matches the glob url, which may have
    // glob wild cards in the host name.
    //
    // Examples:
    //
    //	globURL=*.docker.io, targetURL=blah.docker.io => match
    //	globURL=*.docker.io, targetURL=not.right.io   => no match
    //
    // Note that we don't support wildcards in ports and paths yet.
    func URLsMatch(globURL *url.URL, targetURL *url.URL) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                    archiveBaseName = "wrong"
                }
                task firstZip(type: Zip) {
                    archiveBaseName = "first"
                }
    
                configurations {
                    consumable("blah") {
                        attributes {
                            attribute(Attribute.of('custom', String), "foo")
                            attribute(Attribute.of('attr', String), "incorrect")
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    		},
    		{
    			desc:        "LIST isn't transformed to WATCH if we have query params that do not include watch",
    			initialVerb: "LIST",
    			request: &http.Request{
    				Method: "GET",
    				URL: &url.URL{
    					RawQuery: "blah=asdf&something=else",
    				},
    			},
    			expectedVerb: "LIST",
    		},
    		{
    			// The above may seem counter-intuitive, but it actually is needed for cases like
    			// watching a single item, e.g.:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/service_test.go

    	differingTLSMode.Endpoint.TLSMode = "permitted"
    	differingLabels := exampleInstance.DeepCopy()
    	differingLabels.Endpoint.Labels = labels.Instance{
    		"app":         "prod-app",
    		"another-app": "blah",
    	}
    	differingServiceAccount := exampleInstance.DeepCopy()
    	differingServiceAccount.Endpoint.ServiceAccount = "service-account-two"
    	differingLocality := exampleInstance.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

                $junitSetup
                tasks.register('otherTests', Test) {
                    binaryResultsDirectory = file("bin")
                    classpath = files('blahClasspath')
                    testClassesDirs = files("blah")
                }
                tasks.register('testReport', TestReport) {
                    reportOn test, otherTests
                    destinationDir reporting.file("tr")
                }
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

                import org.junit.jupiter.params.provider.MethodSource;
    
                class SomeTest {
                    public static Stream<Arguments> args() {
                        return Stream.of(Arguments.of("blah"));
                    }
    
                    @ParameterizedTest
                    @MethodSource("args")
                    void someTest(String value) { }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top