Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 605 for joinTo (5.06 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

            if (!modulePath.isEmpty()) {
                argumentList.addAll(Arrays.asList("--module-path", Joiner.on(File.pathSeparator).join(modulePath), "--add-modules", "ALL-MODULE-PATH"));
            }
            if (!classpath.isEmpty()) {
                argumentList.addAll(Arrays.asList("-cp", Joiner.on(File.pathSeparator).join(classpath)));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. chainable_api.go

    	}
    	return
    }
    
    // Joins specify Joins conditions
    //
    //	db.Joins("Account").Find(&user)
    //	db.Joins("JOIN emails ON emails.user_id = users.id AND emails.email = ?", "******@****.***").Find(&user)
    //	db.Joins("Account", DB.Select("id").Where("user_id = users.id AND name = ?", "someName").Model(&Account{}))
    func (db *DB) Joins(query string, args ...interface{}) (tx *DB) {
    	return joins(db, clause.LeftJoin, query, args...)
    }
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

    public class TextUtil {
        private static final Pattern WHITESPACE = Pattern.compile("\\s*");
        private static final Pattern UPPER_CASE = Pattern.compile("(?=\\p{Upper})");
        private static final Joiner KEBAB_JOINER = Joiner.on("-");
        private static final Function<String, String> TO_LOWERCASE = new Function<String, String>() {
            @Override
            public String apply(String input) {
                return input.toLowerCase();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            }
            String prefix = (moduleName == null) ? "" : (moduleName + '=');
            StringJoiner joiner = new StringJoiner(File.pathSeparator, prefix, "");
            joiner.setEmptyValue("");
            for (Path p : paths) {
                joiner.add(p.toString());
            }
            String value = joiner.toString();
            if (value.isEmpty()) {
                return new String[0];
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

            if (performanceTestExecution == null || performanceTestExecution.getTasks() == null) {
                return "";
            }
            return Joiner.on(" ").join(performanceTestExecution.getTasks());
        }
    
        private static String getCleanTasks(PerformanceTestHistory testHistory) {
            PerformanceTestExecution performanceTestExecution = getExecution(testHistory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                statement.setString(7, results.getOperatingSystem());
                statement.setString(8, results.getJvm());
                statement.setString(9, results.getVcsBranch());
                statement.setString(10, Joiner.on(",").join(results.getVcsCommits()));
                statement.setString(11, results.getTestGroup());
                statement.setString(12, resultType);
                statement.setString(13, results.getChannel());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/cc_op_gen_util.cc

    }
    
    string ToCamelCase(StringPiece str) {
      string result;
      const char joiner = '_';
      size_t i = 0;
      bool cap = true;
      while (i < str.size()) {
        const char c = str[i++];
        if (c == '>') {
          cap = true;
        } else if (c == joiner) {
          cap = true;
        } else if (cap) {
          result += toupper(c);
          cap = false;
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

                        builder.append(',');
                    }
                    builder.append(name).append('=');
                    if (value instanceof Collection) {
                        builder.append(Joiner.on(':').join((Collection<?>) value));
                    } else if (value instanceof File) {
                        builder.append(RelativePathUtil.relativePath(workingDirectory, (File) value));
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.proto

      string network = 4;
    
      // Protocol that should be used to connect to this workload.
      TunnelProtocol tunnel_protocol = 5;
    
      // The SPIFFE identity of the workload. The identity is joined to form spiffe://<trust_domain>/ns/<namespace>/sa/<service_account>.
      // TrustDomain of the workload. May be elided if this is the mesh wide default (typically cluster.local)
      string trust_domain = 6;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/build.gradle.kts

    plugins {
        id("gradlebuild.internal.java")
    }
    
    description = "Collection of test fixtures for performance tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    val reports by configurations.creating
    val flamegraph by configurations.creating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top