Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,085 for getHome (0.34 sec)

  1. test/fixedbugs/issue33158.dir/a.go

    package a
    
    var GS string
    
    func M() string {
    	if s := getname("Fred"); s != "" {
    		return s
    	}
    	if s := getname("Joe"); s != "" {
    		return s
    	}
    
    	return string("Alex")
    }
    
    // getname can be any function returning a string, just has to be non-inlinable.
    
    //go:noinline
    func getname(s string) string {
    	return s + "foo"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 18 17:24:59 UTC 2019
    - 478 bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPlugin.java

            variant.setDescription("Binary data file containing results of Jacoco test coverage reporting for the " + suite.getName() + " Test Suite's " + target.getName() + " target.");
            variant.setVisible(false);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 21:09:25 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/PathAssemblerTest.java

            assertThat(distributionDir1.getName(), equalTo(distributionDir2.getName()));
        }
    
        @Test
        public void distZipWithGradleUserHomeBase() throws Exception {
            configuration.setDistribution(new URI("http://server/dist/gradle-1.0.zip"));
    
            File dist = pathAssembler.getDistribution(configuration).getZipFile();
            assertThat(dist.getName(), equalTo("gradle-1.0.zip"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberWriter.java

                    field.getAccess(), field.getName(), field.getTypeDesc(), field.getSignature(), field.getValue());
                writeFieldAnnotations(fieldVisitor, field.getAnnotations());
                fieldVisitor.visitEnd();
            }
            for (InnerClassMember innerClass : innerClasses) {
                apiMemberAdapter.visitInnerClass(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesGetDoneTest.java

    /** Unit tests for {@link Futures#getDone}. */
    @GwtCompatible
    public class FuturesGetDoneTest extends TestCase {
      public void testSuccessful() throws ExecutionException {
        assertThat(getDone(immediateFuture("a"))).isEqualTo("a");
      }
    
      public void testSuccessfulNull() throws ExecutionException {
        assertThat(getDone(Futures.<@Nullable String>immediateFuture(null))).isEqualTo(null);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        TestSuite suite = new TestSuite(AbstractFutureFallbackAtomicHelperTest.class.getName());
        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
          if (Modifier.isPublic(method.getModifiers()) && method.getName().startsWith("test")) {
            suite.addTest(
                TestSuite.createTest(AbstractFutureFallbackAtomicHelperTest.class, method.getName()));
          }
        }
        return suite;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Methods.java

         */
        public static final Equivalence<Method> SIGNATURE_EQUIVALENCE = new Equivalence<Method>() {
            @Override
            protected boolean doEquivalent(Method a, Method b) {
                if (a.getName().equals(b.getName())) {
                    if (a.getReturnType().equals(b.getReturnType())
                        || (a.getReturnType().isAssignableFrom(b.getReturnType())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetDoneTest.java

    /** Unit tests for {@link Futures#getDone}. */
    @GwtCompatible
    public class FuturesGetDoneTest extends TestCase {
      public void testSuccessful() throws ExecutionException {
        assertThat(getDone(immediateFuture("a"))).isEqualTo("a");
      }
    
      public void testSuccessfulNull() throws ExecutionException {
        assertThat(getDone(Futures.<@Nullable String>immediateFuture(null))).isEqualTo(null);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/AuthenticationSupporter.java

            } else {
                throw new IllegalArgumentException(String.format("Unknown credentials type: '%s' (supported types: %s, %s and %s).", publicType.getName(), PasswordCredentials.class.getName(), AwsCredentials.class.getName(), HttpHeaderCredentials.class.getName()));
            }
        }
    
        private static <T extends Credentials> Class<? super T> getCredentialsPublicType(Class<T> implType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPlugin.java

            project.getComponents().withType(CppApplication.class).all(cppApplication -> {
                DefaultVisualStudioProject vsProject = extension.getProjectRegistry().createProject(project.getName(), cppApplication.getName());
                vsProject.getSourceFiles().from(cppApplication.getCppSource());
                vsProject.getHeaderFiles().from(cppApplication.getHeaderFiles());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top