Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,266 for getBase (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/FixMainScriptTransformer.java

     * the static method.
     */
    public class FixMainScriptTransformer extends AbstractScriptTransformer {
        @Override
        protected int getPhase() {
            return Phases.CONVERSION;
        }
    
        @Override
        public void call(SourceUnit source) throws CompilationFailedException {
            ClassNode scriptClass = AstUtils.getScriptClass(source);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java

            assertEquals("123.123.123.123", ftpInfo.getHost());
            assertEquals(9999, ftpInfo.getPort());
            assertEquals("/", ftpInfo.getParent());
            assertNull(ftpInfo.getName());
    
            value = "ftp://123.123.123.123/test.txt";
            ftpInfo = new FtpClient.FtpInfo(value);
            assertEquals(value, ftpInfo.toUrl());
            assertEquals("123.123.123.123:21", ftpInfo.getCacheKey());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/ImperativeStatementDetectingTransformer.java

        }
    
        @Override
        protected int getPhase() {
            return Phases.CANONICALIZATION;
        }
    
        public boolean isImperativeStatementDetected() {
            return imperativeStatementDetected;
        }
    
        @Override
        public void call(SourceUnit source) throws CompilationFailedException {
            BlockStatement statementBlock = source.getAST().getStatementBlock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TaskOperationMapper.java

                return descriptors.get(taskNode.getTask().getTaskIdentity());
            }
            return null;
        }
    
        @Override
        public DefaultTaskDescriptor createDescriptor(ExecuteTaskBuildOperationDetails details, BuildOperationDescriptor buildOperation, @Nullable OperationIdentifier parent) {
            OperationIdentifier id = buildOperation.getId();
            String taskIdentityPath = buildOperation.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:16:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/method/WeaklyTypeReferencingMethod.java

            } catch (InvocationTargetException e) {
                throw UncheckedException.throwAsUncheckedException(e.getCause());
            } catch (Exception e) {
                throw new GradleException(String.format("Could not call %s.%s() on %s", method.getDeclaringClass().getSimpleName(), method.getName(), target), e);
            }
        }
    
        public Method getMethod() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/RuntimeClasspathResourceHasher.java

            return fileSnapshotContext.getSnapshot().getHash();
        }
    
        @Override
        public HashCode hash(ZipEntryContext zipEntryContext) throws IOException {
            return zipEntryContext.getEntry().withInputStream(Hashing::hashStream);
        }
    
        @Override
        public void appendConfigurationToHasher(Hasher hasher) {
            hasher.putString(getClass().getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RelativePathTracker.java

        private final Deque<String> segments = new ArrayDeque<>();
        private String rootName;
    
        public void enter(FileSystemLocationSnapshot snapshot) {
            enter(snapshot.getName());
        }
    
        public void enter(String name) {
            if (rootName == null) {
                rootName = name;
            } else {
                segments.addLast(name);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    reference = MojoExecutionException.class.getSimpleName();
    
                    Throwable cause = exception.getCause();
                    if (cause instanceof IOException) {
                        cause = cause.getCause();
                        if (cause instanceof ConnectException) {
                            reference = ConnectException.class.getSimpleName();
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/AbstractFingerprintingStrategy.java

        ) {
            this.identifier = identifier;
            this.emptyFingerprint = new EmptyCurrentFileCollectionFingerprint(identifier);
            Hasher hasher = Hashing.newHasher();
            hasher.putString(getClass().getName());
            configurableNormalizer.appendConfigurationToHasher(hasher);
            this.configurationHash = hasher.hash();
        }
    
        @Override
        public String getIdentifier() {
            return identifier;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenSimpleLogger.java

            }
            Throwable cause = t.getCause();
            if (cause != null && t != cause) {
                writeThrowable(cause, stream, "Caused by", prefix);
            }
        }
    
        private void writeThrowable(Throwable t, PrintStream stream, String caption, String prefix) {
            MessageBuilder builder =
                    builder().a(prefix).strong(caption).a(": ").a(t.getClass().getName());
            if (t.getMessage() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top