Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 161 for Desc (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskpath/ProjectNameMatchingIntegrationTest.groovy

            """.stripIndent()
        }
    
        def "logs info message for exact project name match [#desc]"() {
            when:
            run("$projectPath:help", "--info")
    
            then:
            outputContains("Task path '$projectPath:help' matched project '$resolvedProject'")
            outputDoesNotContain("abbreviated")
    
            where:
            desc                                    | projectPath                           | resolvedProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

            try {
                PluginDescriptor desc = descriptors.get(key);
                if (desc == null) {
                    synchronized (key) {
                        desc = descriptors.get(key);
                        if (desc == null) {
                            desc = supplier.load();
                            descriptors.putIfAbsent(key, clone(desc));
                        }
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/ByteSourceTester.java

          ByteSourceFactory factory, String string, String name, String desc) {
        TestSuite suite = suiteForBytes(factory, string.getBytes(Charsets.UTF_8), name, desc, true);
        CharSourceFactory charSourceFactory = SourceSinkFactories.asCharSourceFactory(factory);
        suite.addTest(
            CharSourceTester.suiteForString(
                charSourceFactory, string, name + ".asCharSource[Charset]", desc));
        return suite;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top