Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,266 for getBase (0.13 sec)

  1. guava/src/com/google/common/eventbus/SubscriberRegistry.java

        } catch (UncheckedExecutionException e) {
          throw Throwables.propagate(e.getCause());
        }
      }
    
      private static final class MethodIdentifier {
    
        private final String name;
        private final List<Class<?>> parameterTypes;
    
        MethodIdentifier(Method method) {
          this.name = method.getName();
          this.parameterTypes = Arrays.asList(method.getParameterTypes());
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                    _PUTFIELD(generatedTypeName, NAME_FIELD, STRING);
                    // Done
                    _RETURN();
                }});
    
                //
                // Add `getName()`
                //
                publicMethod("getName", RETURN_STRING, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    // return this.name
                    _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

                public Property(String hash, Set<String> attributes) {
                    this.hash = hash;
                    this.attributes = attributes;
                }
    
                public String getHash() {
                    return hash;
                }
    
                public Set<String> getAttributes() {
                    return attributes;
                }
    
                public Collection<Entry> getRoots() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/eventbus/SubscriberRegistry.java

        } catch (UncheckedExecutionException e) {
          throw Throwables.propagate(e.getCause());
        }
      }
    
      private static final class MethodIdentifier {
    
        private final String name;
        private final List<Class<?>> parameterTypes;
    
        MethodIdentifier(Method method) {
          this.name = method.getName();
          this.parameterTypes = Arrays.asList(method.getParameterTypes());
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

                                writePath(encoder, isRoot, fileSnapshot);
                                writeAccessType(encoder, fileSnapshot.getAccessType());
                                writeHashCode(encoder, fileSnapshot.getHash());
                                FileMetadata metadata = fileSnapshot.getMetadata();
                                encoder.writeSmallLong(metadata.getLastModified());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MerkleDirectorySnapshotBuilder.java

                Hasher hasher = Hashing.newHasher();
                hasher.putHash(DIR_SIGNATURE);
                for (FileSystemLocationSnapshot child : children) {
                    hasher.putString(child.getName());
                    hasher.putHash(child.getHash());
                }
                return new DirectorySnapshot(absolutePath, name, accessType, hasher.hash(), children);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

            new File(getProject().getProjectDir(), TARGET_WRAPPER_FINAL).mkdirs()
            wrapper.setDistributionPath("somepath")
            wrapper.setDistributionSha256Sum("somehash")
        }
    
        Wrapper getTask() {
            return wrapper
        }
    
        def "wrapper has correct defaults"() {
            given:
            wrapper = createTask(Wrapper.class)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

        @Internal
        public String getName() {
            return name != null ? name : defaultName();
        }
    
        @Nullable
        private String defaultName() {
            return nameGenerator != null ? uncheckedCall(nameGenerator) : fileName();
        }
    
        @Nullable
        private String fileName() {
            final File file = getFile();
            return file != null ? file.getName() : null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/jpms/ModuleJarFixture.groovy

                manifest += "Automatic-Module-Name: $name"
            }
    
            final FileManager fileManager = new FileManager(compiler.getStandardFileManager(null, null, null))
            JavaCompiler.CompilationTask task = compiler.getTask(null, fileManager, diagnostics, null, null, classesToCompile)
    
            if (task.call()) {
                def result = new ByteArrayOutputStream()
                def target = new JarOutputStream(result)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

        }
    
        private static boolean hasCauseAncestry(Throwable failure, Class<?> type) {
            Throwable cause = failure.getCause();
            while (cause != null) {
                if (hasCause(cause, type)) {
                    return true;
                }
                cause = cause.getCause();
            }
            return false;
        }
    
        private static boolean hasCause(Throwable cause, Class<?> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top