Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 944 for has_name (0.19 sec)

  1. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

        from(components["java"])
        artifactId = moduleIdentity.baseName.get()
        versionMapping {
            usage("java-api") {
                fromResolutionResult()
            }
            usage("java-runtime") {
                fromResolutionResult()
            }
        }
    
        pom {
            packaging = "jar"
            name = moduleIdentity.baseName.map { "${project.group}:$it" }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/util/format/pod_test.go

    	}
    
    	for _, testCase := range testCases {
    		realPod := Pod(testCase.pod)
    		assert.Equalf(t, testCase.expectedValue, realPod, "Failed to test: %s", testCase.caseName)
    	}
    }
    
    func TestPodAndPodDesc(t *testing.T) {
    	testCases := []struct {
    		caseName      string
    		podName       string
    		podNamespace  string
    		podUID        types.UID
    		expectedValue string
    	}{
    		{"field_empty_case", "", "", "", "_()"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/go/types/operand.go

    	}
    	// Vu is typed
    
    	// x's type V and T have identical underlying types
    	// and at least one of V or T is not a named type
    	// and neither V nor T is a type parameter.
    	if Identical(Vu, Tu) && (!hasName(V) || !hasName(T)) && Vp == nil && Tp == nil {
    		return true, 0
    	}
    
    	// T is an interface type, but not a type parameter, and V implements T.
    	// Also handle the case where T is a pointer to an interface so that we get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSet.java

        }
    
        private String getTaskBaseName() {
            return baseName;
        }
    
        /**
         * Determines the name of a configuration owned by this source set, with the given {@code baseName}.
         *
         * <p>If this is the main source set, returns the uncapitalized {@code baseName}, otherwise, returns the
         * base name prefixed with this source set's name.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl

    		uint32_t count;
    		[size_is(count)] DfsInfo3 *s;
    	} DfsEnumArray3;
    
    	typedef struct {
    		[string] wchar_t *dfs_name;
    	} DfsInfo200;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo200 *s;
    	} DfsEnumArray200;
    
    	typedef struct {
    		uint32_t flags;
    		[string] wchar_t *dfs_name;
    	} DfsInfo300;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo300 *s;
    	} DfsEnumArray300;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                            executable.getBaseName().map(baseName -> toolProvider.getExecutableSymbolFileName("exe/" + names.getDirName() + "stripped/" + baseName)));
                    Provider<RegularFile> strippedLocation = buildDirectory.file(
                            executable.getBaseName().map(baseName -> toolProvider.getExecutableName("exe/" + names.getDirName() + "stripped/" + baseName)));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/RunEclipseTasksBuilder.java

        }
    
        private static String placeHolderTaskName(Project project, String baseName) {
            if (project.getTasks().findByName(baseName) == null) {
                return baseName;
            } else {
                return placeHolderTaskName(project, baseName + "_");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certs_test.go

    		if err := validateCACert(certKeyLocation{dir, caCert.BaseName, "", caCert.Name}); err != nil {
    			t.Errorf("couldn't validate CA certificate %v: %v", caCert.Name, err)
    			// Don't bother validating child certs, but do try the other CAs
    			continue
    		}
    
    		for _, cert := range certs {
    			if err := validateSignedCert(certKeyLocation{dir, caCert.BaseName, cert.BaseName, cert.Name}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/process/internal/SingleRequestWorkerProcessIntegrationTest.groovy

        Object run(Long request) { throw new RuntimeException() }
    }
    """)
    
            when:
            def builder = workerFactory.singleRequestWorker(cl)
            builder.baseName = 'broken worker'
            def worker = builder.build()
            worker.run(12.toLong())
    
            then:
            def e = thrown(WorkerProcessException)
            e.message == 'Failed to run broken worker'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

                String baseName = AbstractProjectAccessorsSourceGenerator.toProjectName(projectPath == ':' ? toJavaName(name) : projectPath)
                String getterPath = baseName.contains('_') ? baseName.substring(baseName.lastIndexOf('_') + 1) : baseName
                int lineOfSubAccessor = lineOf("public ${baseName}ProjectDependency get${getterPath}() { return new ${baseName}ProjectDependency(getFactory(), create(\"${projectPath}\")); }")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top