Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 233 for desc2 (0.04 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/ComponentBinariesModelRuleExtractorTest.groovy

            0 * _
    
            where:
            ruleName         | descr
            "rawBinarySpec"  | "for plain BinarySpec"
            "validTypeRule"  | "for plain sample binary"
            "librarySubType" | "for library sub types"
        }
    
        def "decent error message for #descr"() {
            def ruleMethod = ruleDefinitionForMethod(methodName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue24161e2/main.go

    	"testing"
    )
    
    var _ C.CFStringRef
    
    func f1() {
    	C.SecKeyCreateSignature(0, C.kSecKeyAlgorithmECDSASignatureDigestX962SHA1, 0, nil)
    }
    
    func f2(e C.CFErrorRef) {
    	if desc := C.CFErrorCopyDescription(e); desc != 0 {
    		fmt.Println(desc)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ClassLoaderObjectInputStream.java

            try {
                return Class.forName(desc.getName(), false, loader);
            } catch (ClassNotFoundException e) {
                return super.resolveClass(desc);
            } catch (UnsupportedClassVersionError e) {
                try {
                    Integer majorVersion = JavaClassUtil.getClassMajorVersion(desc.getName(), loader);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/compress/zlib/reader_test.go

    		}
    
    		// Check for sticky errors.
    		if n, err := zr.Read([]byte{0}); n != 0 || err != io.EOF {
    			t.Errorf("%s: Read() = (%d, %v), want (0, io.EOF)", tt.desc, n, err)
    		}
    		if err := zr.Close(); err != nil {
    			t.Errorf("%s: Close() = %v, want nil", tt.desc, err)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 02:16:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. tests/integration/ambient/wasm_test.go

    func TestWasmPluginConfigurations(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			testCases := []struct {
    				desc         string
    				name         string
    				testHostname string
    				targetType   string
    				targetName   string
    			}{
    				{
    					desc:         "Configure WebAssembly filter for gateway",
    					name:         "gateway-wasm-test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/search.jsp

    						<la:message key="labels.searchoptions_score" />
    					</c:if> <c:if test="${sort=='score.desc'}">
    						<la:message key="labels.searchoptions_score" />
    					</c:if> <c:if test="${sort=='filename.asc'}">
    						<la:message key="labels.search_result_sort_filename_asc" />
    					</c:if> <c:if test="${sort=='filename.desc'}">
    						<la:message key="labels.search_result_sort_filename_desc" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/search.jsp

    						<la:message key="labels.searchoptions_score" />
    					</c:if> <c:if test="${sort=='score.desc'}">
    						<la:message key="labels.searchoptions_score" />
    					</c:if> <c:if test="${sort=='filename.asc'}">
    						<la:message key="labels.search_result_sort_filename_asc" />
    					</c:if> <c:if test="${sort=='filename.desc'}">
    						<la:message key="labels.search_result_sort_filename_desc" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top