Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 260 for joinTo (0.19 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

                    return "Please " + deprecationType.usage + " another configuration instead.";
                }
                return String.format("Please %s the %s configuration instead.", deprecationType.usage, Joiner.on(" or ").join(replacements));
            }
        }
    
        public static final char DASH = '-';
    
        public static String createDefaultDeprecationId(String... ids) {
            StringBuilder sb = new StringBuilder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            ImmutableList.Builder<T> outputFiles = ImmutableList.builder();
    
            if (LOGGER.isDebugEnabled() && !moduleNames.isEmpty()) {
                LOGGER.debug("Loaded additional modules from the Gradle distribution: " + Joiner.on(",").join(moduleNames));
            }
    
            for (TestFrameworkDistributionModule module : moduleNames) {
                ClassPath cp = moduleRegistry.getExternalModule(module.getModuleName()).getImplementationClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. tests/scan_test.go

    	if err := DB.Select("people.*, addresses.*").
    		Table("people").
    		Joins("inner join person_addresses on people.id = person_addresses.person_id").
    		Joins("inner join addresses on person_addresses.address_id = addresses.id").
    		Find(&personAddressInfoList).Error; err != nil {
    		t.Errorf("Failed to run join query, got error: %v", err)
    	}
    
    	personMatched := false
    	addressMatched := false
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

                    List<Object> factoryArgs = argGroups.get(item.groupNumber).get(item.itemNumber);
                    return factory.getName()
                        + "("
                        + Joiner.on(", ").useForNull("null").join(factoryArgs)
                        + ")";
                  }
                });
        tester.addEqualityGroup(instance, createInstance(factory, equalArgs));
        for (int i = 0; i < params.size(); i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. internal/grid/handlers.go

    }
    
    // Register a handler for two-way streaming with payload, input stream and output stream.
    // An optional subroute can be given. Multiple entries are joined with '/'.
    func (h *StreamTypeHandler[Payload, Req, Resp]) Register(m *Manager, handle func(ctx context.Context, p Payload, in <-chan Req, out chan<- Resp) *RemoteErr, subroute ...string) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            this.proxyFactory = proxyFactory;
            this.schemaStore = schemaStore;
            this.structBindingsStore = structBindingsStore;
        }
    
        private String describeHandlers() {
            String desc = Joiner.on(", ").join(CollectionUtils.collect(handlers, new InternalTransformer<String, MethodModelRuleExtractor>() {
                @Override
                public String transform(MethodModelRuleExtractor original) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	etcdutil "k8s.io/kubernetes/cmd/kubeadm/app/util/etcd"
    )
    
    var controlPlaneJoinExample = cmdutil.Examples(`
    	# Joins a machine as a control plane instance
    	kubeadm join phase control-plane-join all
    `)
    
    func getControlPlaneJoinPhaseFlags(name string) []string {
    	flags := []string{
    		options.CfgPath,
    		options.ControlPlane,
    		options.NodeName,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    func (s typeParamsById) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
    
    // join unifies the given type parameters x and y.
    // If both type parameters already have a type associated with them
    // and they are not joined, join fails and returns false.
    func (u *unifier) join(x, y *TypeParam) bool {
    	if traceInference {
    		u.tracef("%s ⇄ %s", x, y)
    	}
    	switch hx, hy := u.handles[x], u.handles[y]; {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. cmd/metrics-v3-types.go

    //
    // Note that returning an error here will cause the Metrics handler to return a
    // 500 Internal Server Error.
    type MetricsLoaderFn func(context.Context, MetricValues, *metricsCache) error
    
    // JoinLoaders - joins multiple loaders into a single loader. The returned
    // loader will call each of the given loaders in order. If any of the loaders
    // return an error, the returned loader will return that error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/go/types/unify.go

    func (s typeParamsById) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
    
    // join unifies the given type parameters x and y.
    // If both type parameters already have a type associated with them
    // and they are not joined, join fails and returns false.
    func (u *unifier) join(x, y *TypeParam) bool {
    	if traceInference {
    		u.tracef("%s ⇄ %s", x, y)
    	}
    	switch hx, hy := u.handles[x], u.handles[y]; {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top