Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 547 for desc1 (0.24 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/testing/cacheable_object.go

    	testCases := []struct {
    		desc           string
    		runEncode      bool
    		returnSelf     bool
    		expectedResult string
    		expectedError  error
    	}{
    		{
    			desc:      "delegate",
    			runEncode: true,
    		},
    		{
    			desc:       "delegate return self",
    			runEncode:  true,
    			returnSelf: true,
    		},
    		{
    			desc:           "cached success",
    			runEncode:      false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 30 06:58:54 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/audit_test.go

    			if err != nil {
    				t.Errorf("[%s] error creating the request: %v", test.desc, err)
    			}
    
    			req.Header.Set("User-Agent", userAgent)
    
    			response, err := client.Do(req)
    			if err != nil {
    				t.Errorf("[%s] error: %v", test.desc, err)
    			}
    
    			if response.StatusCode != test.code {
    				t.Errorf("[%s] expected http code %d, got %#v", test.desc, test.code, response)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  3. src/image/draw/clip_test.go

    		if !c.r0.Eq(r) {
    			t.Errorf("%s: clip rectangle want %v got %v", c.desc, c.r0, r)
    			continue
    		}
    		if !c.sp0.Eq(sp) {
    			t.Errorf("%s: sp want %v got %v", c.desc, c.sp0, sp)
    			continue
    		}
    		if !c.nilMask {
    			if !c.mp0.Eq(mp) {
    				t.Errorf("%s: mp want %v got %v", c.desc, c.mp0, mp)
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/initconfiguration_test.go

    				rt.validate(t, obj)
    			}
    		})
    	}
    }
    
    func TestDefaultTaintsMarshaling(t *testing.T) {
    	tests := []struct {
    		desc             string
    		cfg              kubeadmapiv1.InitConfiguration
    		expectedTaintCnt int
    	}{
    		{
    			desc: "Uninitialized nodeRegistration field produces expected taints",
    			cfg: kubeadmapiv1.InitConfiguration{
    				TypeMeta: metav1.TypeMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 09:17:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/CharSinkTester.java

          String desc = entry.getKey();
          TestSuite stringSuite = suiteForString(name, factory, entry.getValue(), desc);
          suite.addTest(stringSuite);
        }
        return suite;
      }
    
      static TestSuite suiteForString(
          String name, CharSinkFactory factory, String string, String desc) {
        TestSuite stringSuite = new TestSuite(name + " [" + desc + "]");
        for (final Method method : testMethods) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

            }
    
            fun newApi(thing: String, desc: String): String =
                "$thing ${describe(thing, desc)}: New public API in 2.0 (@Incubating)"
    
            fun added(thing: String, desc: String): List<String> =
                listOf(
                    "$thing ${describe(thing, desc)}: Is not annotated with @Incubating.",
                    "$thing ${describe(thing, desc)}: Is not annotated with @since 2.0."
                )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubeletconfig/util/test/test.go

    func SkipRest(t *testing.T, desc string, err error, contains string) bool {
    	if err != nil {
    		if len(contains) == 0 {
    			t.Errorf("case %q, expect nil error but got %q", desc, err.Error())
    		} else if !strings.Contains(err.Error(), contains) {
    			t.Errorf("case %q, expect error to contain %q but got %q", desc, contains, err.Error())
    		}
    		return true
    	} else if len(contains) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 19 16:18:53 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/wasmplugin_test.go

    			applyAndTestWasmWithOCI(t, wasmTestConfigs{
    				desc:            "initial creation with 0.0.1",
    				name:            "wasm-test-module",
    				tag:             tag,
    				policy:          "",
    				upstreamVersion: "0.0.1",
    				expectedVersion: "0.0.1",
    			})
    
    			resetWasm(t, "wasm-test-module")
    			applyAndTestWasmWithOCI(t, wasmTestConfigs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

            return desc -> config.execute(new InclusiveRepositoryContentDescriptor() {
                @Override
                public void includeGroup(String group) {
                    desc.excludeGroup(group);
                }
    
                @Override
                public void includeGroupAndSubgroups(String groupPrefix) {
                    desc.excludeGroupAndSubgroups(groupPrefix);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            @Override
            public void visitOuterClass(String owner, String name, String desc) {
                super.visitOuterClass(remap(owner), remap(name), remap(desc));
            }
    
            @Override
            public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
                return super.visitAnnotation(remap(desc), visible);
            }
    
            class MethodRenamer extends MethodVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top