Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,253 for joinTo (0.11 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. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                    append("<dispatch receiver>: ${dispatchReceiverType.render()}")
                    if (valueParameters.isNotEmpty()) append(", ")
                }
                valueParameters.joinTo(this) { stringRepresentation(it) }
                append(")")
                append(": ${returnType.render()}")
            }
            is KaValueParameterSymbol -> "${if (isVararg) "vararg " else ""}$name: ${returnType.render()}"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                        buildString {
                            append(part.name)
                            if (part.typeArgumentList.typeArguments.isNotEmpty()) {
                                part.typeArgumentList.typeArguments.joinTo(this, prefix = "<", postfix = ">") { it.renderTypeAsKotlinType() }
                            }
                        }
                    }
                    if (isMarkedNullable) "$renderedQualifier?" else renderedQualifier
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Joiner.java

        return new Joiner(separator);
      }
    
      /** Returns a joiner which automatically places {@code separator} between consecutive elements. */
      public static Joiner on(char separator) {
        return new Joiner(String.valueOf(separator));
      }
    
      private final String separator;
    
      private Joiner(String separator) {
        this.separator = checkNotNull(separator);
      }
    
      private Joiner(Joiner prototype) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Joiner.java

        return new Joiner(separator);
      }
    
      /** Returns a joiner which automatically places {@code separator} between consecutive elements. */
      public static Joiner on(char separator) {
        return new Joiner(String.valueOf(separator));
      }
    
      private final String separator;
    
      private Joiner(String separator) {
        this.separator = checkNotNull(separator);
      }
    
      private Joiner(Joiner prototype) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/join.go

    var (
    	joinWorkerNodeDoneMsg = dedent.Dedent(`
    		This node has joined the cluster:
    		* Certificate signing request was sent to apiserver and a response was received.
    		* The Kubelet was informed of the new secure connection details.
    
    		Run 'kubectl get nodes' on the control-plane to see this node join the cluster.
    
    		`)
    
    	joinControPlaneDoneTemp = template.Must(template.New("join").Parse(dedent.Dedent(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. callbacks/preload.go

    		for _, join := range joins {
    			if _, ok := relationships.Relations[join]; ok && name == join {
    				joined = true
    				continue
    			}
    			joinNames := strings.SplitN(join, ".", 2)
    			if len(joinNames) == 2 {
    				if _, ok := relationships.Relations[joinNames[0]]; ok && name == joinNames[0] {
    					joined = true
    					nestedJoins = append(nestedJoins, joinNames[1])
    				}
    			}
    		}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top