Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,253 for joinTo (0.35 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRulesReporter.java

                }
                if (input.getSuggestedPaths().size() > 0) {
                    writer.write(indent(4));
                    writer.write("suggestions: ");
                    writer.println(Joiner.on(", ").join(input.getSuggestedPaths()));
                }
            }
        }
    
        private void heading(String heading) {
            writer.print(indent(1));
            writer.println(heading);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. clause/from.go

    	}
    
    	for _, join := range from.Joins {
    		builder.WriteByte(' ')
    		join.Build(builder)
    	}
    }
    
    // MergeClause merge from clause
    func (from From) MergeClause(clause *Clause) {
    	clause.Expression = from
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jul 15 02:25:10 UTC 2020
    - 630 bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformer.java

                toPath.removeFirst();
            }
            for (String ignored : fromPath) {
                relativePath.add("..");
            }
            relativePath.addAll(toPath);
            return Joiner.on(File.separatorChar).join(relativePath);
        }
    
        private LinkedList<String> splitPath(String path) {
            File pathFile = new File(path);
            LinkedList<String> split = new LinkedList<String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocationWorker.java

            }
    
            toolExec.args(invocation.getArgs());
    
            if (!invocation.getPath().isEmpty()) {
                String pathVar = OperatingSystem.current().getPathVar();
                String toolPath = Joiner.on(File.pathSeparator).join(invocation.getPath());
                toolPath = toolPath + File.pathSeparator + System.getenv(pathVar);
                toolExec.environment(pathVar, toolPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifier.java

            ClassLoaderScopeIdentifier nextParent = parent;
            while (nextParent != null) {
                names.addFirst(nextParent.name);
                nextParent = nextParent.parent;
            }
            return Joiner.on(":").join(names);
        }
    
        @Override
        public String toString() {
            return "ClassLoaderScopeIdentifier{" + getPath() + "}";
        }
    
        private static class Id implements ClassLoaderId {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 03 07:46:21 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompiler.java

            }
            if (processorIndex == compilerArgs.size() - 1) {
                throw new InvalidUserDataException("No processor specified for compiler argument -processor in requested compiler args: " + Joiner.on(" ").join(compilerArgs));
            }
            Collection<String> explicitProcessors = Splitter.on(',').splitToList(compilerArgs.get(processorIndex + 1));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/DefaultPolymorphicNamedEntityInstantiator.java

            for (Class<?> clazz : factories.keySet()) {
                names.add(clazz.getSimpleName());
            }
            Collections.sort(names);
            return names.isEmpty() ? "(None)" : Joiner.on(", ").join(names);
        }
    
        @Override
        public <U extends T> void registerFactory(Class<U> type, NamedDomainObjectFactory<? extends U> factory) {
            if (!baseType.isAssignableFrom(type)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/UnresolvableConfigurationResult.java

            return "project " + dependency.getName();
        }
    
        private static String moduleDependencyLabel(Dependency dependency) {
            return Joiner.on(":").join(
                Stream.of(dependency.getGroup(), dependency.getName(), dependency.getVersion())
                    .filter(Objects::nonNull)
                    .collect(Collectors.toList())
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * should be kept after compilation has completed. Useful for joint compilation debugging purposes.
         * Defaults to {@code false}.
         */
        @Input
        public boolean isKeepStubs() {
            return keepStubs;
        }
    
        /**
         * Sets whether Java stubs for Groovy classes generated during Java/Groovy joint compilation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/CharSinkTester.java

        assertEquals(expected, factory.getSinkContents());
      }
    
      private void assertContainsExpectedLines(String separator) throws IOException {
        String expected = expectedLines.isEmpty() ? "" : Joiner.on(separator).join(expectedLines);
        if (!lines.isEmpty()) {
          // if we wrote any lines in writeLines(), there will be a trailing newline
          expected += separator;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top