Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,266 for getBase (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/LazyPublishArtifact.java

            this.version = version;
            this.fileResolver = fileResolver;
            this.taskDependencyFactory = taskDependencyFactory;
        }
    
        @Override
        public String getName() {
            return getDelegate().getName();
        }
    
        @Override
        public String getExtension() {
            return getDelegate().getExtension();
        }
    
        @Override
        public String getType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RegularFileSnapshot.java

            diffListener.nodeRemoved(this);
            return Optional.empty();
        }
    
        @Override
        public String toString() {
            return String.format("%s@%s/%s", super.toString(), getHash(), getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java

          // filter out equals/hashCode/toString
          if (method.getName().equals("equals")
              && method.getParameterTypes().length == 1
              && method.getParameterTypes()[0] == Object.class) {
            continue;
          }
          if (method.getName().equals("hashCode") && method.getParameterTypes().length == 0) {
            continue;
          }
          if (method.getName().equals("toString") && method.getParameterTypes().length == 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 08 17:31:55 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/FileSystemLocationSnapshotHasher.java

            @Nullable
            @Override
            public HashCode hash(FileSystemLocationSnapshot snapshot) {
                return snapshot.getHash();
            }
    
            @Override
            public void appendConfigurationToHasher(Hasher hasher) {
                hasher.putString(getClass().getName());
            }
        };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

            then:
            1 * fileSnapshotContext.getSnapshot() >> fileSnapshot
            2 * fileSnapshot.getName() >> file.name
            1 * fileSnapshot.getAbsolutePath() >> file.absolutePath
            1 * apiClassExtractor.extractApiClassFrom(_) >> { args -> throw new Exception("Boom!") }
    
            and:
            1 * fileSnapshot.getHash()
    
            and:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasher.java

            return fallbackStrategy.handle(new ZipEntryContent(zipEntry.getName(), content), entry -> hashClassBytes(content));
        }
    
        private boolean isNotClassFile(String name) {
            return !name.endsWith(".class");
        }
    
        @Override
        public void appendConfigurationToHasher(Hasher hasher) {
            hasher.putString(getClass().getName());
            extractor.appendConfigurationToHasher(hasher);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/AbstractDynamicObject.java

                        getDisplayName(), publicType.getName()), name, publicType);
            } else if (publicType != null) {
                return new MissingPropertyException(String.format("Could not get unknown property '%s' for object of type %s.", name,
                        publicType.getName()), name, publicType);
            } else {
                // Use the display name anyway
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java

          // filter out equals/hashCode/toString
          if (method.getName().equals("equals")
              && method.getParameterTypes().length == 1
              && method.getParameterTypes()[0] == Object.class) {
            continue;
          }
          if (method.getName().equals("hashCode") && method.getParameterTypes().length == 0) {
            continue;
          }
          if (method.getName().equals("toString") && method.getParameterTypes().length == 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 08 17:31:55 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/mappers/AssertErrorMapper.java

        protected List<String> getSupportedClassNames() {
            return Collections.singletonList(
                AssertionError.class.getName()
            );
        }
    
        @Override
        public TestFailure map(Throwable throwable, ThrowableToTestFailureMapper rootMapper) throws Exception {
            Throwable cause = throwable.getCause();
            List<TestFailure> causeFailure = null;
            if (cause != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 25 09:04:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultPropertyAnnotationMetadata.java

            } catch (Exception e) {
                throw new GradleException(String.format("Could not call %s.%s() on %s", getter.getDeclaringClass().getSimpleName(), getter.getName(), object), e);
            }
        }
    
        @Override
        public String toString() {
            return String.format("%s / %s()", propertyName, getter.getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top