Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Senden (0.82 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                append(")")
                append(": ${returnType.render()}")
            }
            is KaValueParameterSymbol -> "${if (isVararg) "vararg " else ""}$name: ${returnType.render()}"
            is KaTypeParameterSymbol -> this.nameOrAnonymous.asString()
            is KaVariableSymbol -> "${if (isVal) "val" else "var"} $name: ${returnType.render()}"
            is KaClassLikeSymbol -> classId?.toString() ?: nameOrAnonymous.asString()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.SpecialNames
    import org.jetbrains.kotlin.name.StandardClassIds
    import org.jetbrains.kotlin.renderer.DescriptorRenderer
    import org.jetbrains.kotlin.renderer.render
    import org.jetbrains.kotlin.resolve.calls.inference.CapturedType
    import org.jetbrains.kotlin.resolve.descriptorUtil.annotationClass
    import org.jetbrains.kotlin.types.*
    import org.jetbrains.kotlin.types.checker.NewCapturedType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

        private fun renderAnnotationValue(value: KaAnnotationValue, printer: PrettyPrinter) {
            printer.append(KaAnnotationValueRenderer.render(value))
        }
    
        private fun KaSession.renderNamedConstantValue(value: KaNamedAnnotationValue, printer: PrettyPrinter) {
            printer.append(value.name.render()).append(" = ")
            renderValue(value.expression, printer, renderSymbolsFully = false)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	data.Errors = errList
    	data.Total = rpt.Total()
    	data.Legend = legend
    	return getHTMLTemplates().ExecuteTemplate(dst, tmpl, data)
    }
    
    // render responds with html generated by passing data to the named template.
    func (ui *webInterface) render(w http.ResponseWriter, req *http.Request, tmpl string,
    	rpt *report.Report, errList, legend []string, data webArgs) {
    	data.SampleTypes = sampleTypes(ui.prof)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

                            when (symbol) {
                                is KaDeclarationSymbol -> symbol.render(prettyRenderer)
                                is KaFileSymbol -> prettyPrint {
                                    printCollection(symbol.getFileScope().getAllSymbols().asIterable(), separator = "\n\n") {
                                        append(it.render(prettyRenderer))
                                    }
                                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      const search = find('search');
      const actions = find('action-menu');
      const actionTitle = find('action-title');
      const detailBox = find('current-details');
    
      window.addEventListener('resize', render);
      window.addEventListener('popstate', render);
      search.addEventListener('keydown', handleSearchKey);
    
      // Withdraw action menu when clicking outside, or when item selected.
      document.addEventListener('mousedown', (e) => {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

         * to generate the ANSI escape sequences for the supplied text.
         *
         * @param text text
         * @return this
         * @since 2.2
         */
        public Ansi render(final String text) {
            a(new org.jline.jansi.Ansi().render(text).toString());
            return this;
        }
    
        /**
         * String formats and renders the supplied arguments.  Uses the {@link org.jline.jansi.AnsiRenderer}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          }
        }
      }
    
      private enum Gender {
        MALE,
        FEMALE
      }
    
      private static class AllDefaultValuesChecker extends DefaultValueChecker {
    
        @SuppressWarnings("unused") // called by NullPointerTester
        public void checkDefaultValuesForTheseTypes(
            Gender gender,
            Integer integer,
            int i,
            String string,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  9. JavadocStyleGuide.md

    ### 1.5.1 IntelliJ IDEA
    
    IntelliJ IDEA will display `<p>` or an empty `*` as a new line:
    
    ```java
    /**
     * A
     *
     * B
     ```
    
    ```java
    /**
     * A
     * <p>
     * B
     ```
    
    Render as:
    
    ```text
    A
    B
    ```
    
    If you want to stop IntelliJ IDEA from auto closing HTML tags:
    `Settings -> Editor -> General -> Smart Keys -> "Insert closing tag on tag completion"`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/trace/gen.go

    	"strings"
    )
    
    // generator is an interface for generating a JSON trace for the trace viewer
    // from a trace. Each method in this interface is a handler for a kind of event
    // that is interesting to render in the UI via the JSON trace.
    type generator interface {
    	// Global parts.
    	Sync() // Notifies the generator of an EventSync event.
    	StackSample(ctx *traceContext, ev *trace.Event)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top