Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 566 for joinTo (0.15 sec)

  1. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/components/psiDeclarationProvider/TestPsiElementRenderer.kt

            is KtNamedFunction -> buildString {
                append("KtNamedFunction:")
                append(psiElement.name)
                append("(")
                psiElement.valueParameters.joinTo(this) { render(it) }
                append(")")
            }
            is KtParameter -> buildString {
                if (psiElement.isVarArg) {
                    append("vararg ")
                }
                append(psiElement.name)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Dec 19 07:03:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/diagnosticProvider/AbstractElementDiagnosticsTest.kt

                    if (diagnostics.isNotEmpty()) {
                        for (diagnostic in diagnostics) {
                            append(diagnostic.factoryName).append(": ")
                            diagnostic.textRanges.joinTo(this)
                            appendLine()
                        }
                    } else {
                        appendLine("No diagnostics found")
                    }
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/kube/krt/join.go

    func (j *join[I]) dump() {
    	log.Errorf("> BEGIN DUMP (join %v)", j.collectionName)
    	for _, c := range j.collections {
    		c.dump()
    	}
    	log.Errorf("< END DUMP (join %v)", j.collectionName)
    }
    
    func (j *join[T]) Synced() Syncer {
    	return channelSyncer{
    		name:   j.collectionName,
    		synced: j.synced,
    	}
    }
    
    // JoinCollection combines multiple Collection[T] into a single
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/errors/join.go

    package errors
    
    import (
    	"unsafe"
    )
    
    // Join returns an error that wraps the given errors.
    // Any nil error values are discarded.
    // Join returns nil if every value in errs is nil.
    // The error formats as the concatenation of the strings obtained
    // by calling the Error method of each element of errs, with a newline
    // between each string.
    //
    // A non-nil error returned by Join implements the Unwrap() []error method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 18:37:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/model/BinarySourceTransformations.java

                public int compare(LanguageTransform<?, ?> o1, LanguageTransform<?, ?> o2) {
                    boolean joint1 = o1.getTransformTask() instanceof JointCompileTaskConfig;
                    boolean joint2 = o2.getTransformTask() instanceof JointCompileTaskConfig;
                    return Booleans.trueFirst().compare(joint1, joint2);
                }
            });
            return prioritized;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. clause/joins.go

    	RightJoin JoinType = "RIGHT"
    )
    
    // Join clause for from
    type Join struct {
    	Type       JoinType
    	Table      Table
    	ON         Where
    	Using      []string
    	Expression Expression
    }
    
    func (join Join) Build(builder Builder) {
    	if join.Expression != nil {
    		join.Expression.Build(builder)
    	} else {
    		if join.Type != "" {
    			builder.WriteString(string(join.Type))
    			builder.WriteByte(' ')
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Nov 03 13:03:13 UTC 2022
    - 901 bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/util/join.go

    )
    
    var joinCommandTemplate = template.Must(template.New("join").Parse(`` +
    	`kubeadm join {{.ControlPlaneHostPort}} --token {{.Token}} \
    	{{range $h := .CAPubKeyPins}}--discovery-token-ca-cert-hash {{$h}} {{end}}{{if .ControlPlane}}\
    	--control-plane {{if .CertificateKey}}--certificate-key {{.CertificateKey}}{{end}}{{end}}`,
    ))
    
    // GetJoinWorkerCommand returns the kubeadm join command for a given token and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/cc/training/coordinator.h

      /// its queue.
      virtual bool IsRunning() const = 0;
    };
    
    /// Coordinator class manages the termination of a collection of QueueRunners.
    /// Without a coordinator, QueueRunners have to be joined in a specific order;
    /// otherwise the QueueRunner::Join() could sometimes hang. The
    /// Coordinator::RequestStop() plays the key role which notifies all running
    /// threads under a coordinator to stop. This function could be called by any
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java

    import java.util.Iterator;
    
    /**
     * Benchmarks {@link Joiner} against some common implementations of delimiter-based string joining.
     *
     * @author Adomas Paltanavicius
     */
    public class JoinerBenchmark {
    
      private static final String DELIMITER_STRING = ",";
      private static final char DELIMITER_CHARACTER = ',';
    
      private static final Joiner JOINER_ON_STRING = Joiner.on(DELIMITER_STRING);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.9K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptTemplateBindingFactory.java

                    public String apply(String jvmOpt) {
                        return "\"" + escapeWindowsJvmOpt(jvmOpt) + "\"";
                    }
                });
    
                Joiner spaceJoiner = Joiner.on(" ");
                return spaceJoiner.join(quotedDefaultJvmOpts);
            } else {
                if (defaultJvmOpts == null) {
                    return "";
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top