Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 383 for gretty (0.13 sec)

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

                testServices.assertions.assertEqualsToTestDataFileSibling(scopeContextStringRepresentation)
                testServices.assertions.assertEqualsToTestDataFileSibling(scopeContextStringRepresentationPretty, extension = ".pretty.txt")
            }
        }
    
        private fun KaSession.renderForTests(
            element: KtElement,
            scopeContext: KaScopeContext,
            printPretty: Boolean = false,
        ): String = prettyPrint {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractFileImportingScopeContextTest.kt

                testServices.assertions.assertEqualsToTestDataFileSibling(scopeContextStringRepresentation)
                testServices.assertions.assertEqualsToTestDataFileSibling(scopeContextStringRepresentationPretty, extension = ".pretty.txt")
            }
        }
    
        private fun KaSession.render(
            importingScope: KaScopeContext,
            renderDefaultImportingScope: Boolean,
            printPretty: Boolean = false,
        ): String = prettyPrint {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. docs/en/docs/alternatives.md

        Nevertheless, it is already being used as a "standard" by several tools. This greatly improves interoperability, as you could switch Uvicorn for any other ASGI server (like Daphne or Hypercorn), or you could add ASGI compatible tools, like `python-socketio`.
    
    !!! check "**FastAPI** uses it to"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    ts&&(module.exports=Prism),'undefined'!=typeof global&&(global.Prism=Prism);Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},'class-name':{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:if|else|while|do|for|return...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTask.kt

        }
    
        /**
         * It appears there is no way to configure Gson to use 4 spaces instead of 2 for indentation.
         *
         * See: https://github.com/google/gson/blob/master/UserGuide.md#TOC-Compact-Vs.-Pretty-Printing-for-JSON-Output-Format
         */
        private
        fun adjustIndentation(initalJsonString: String): String {
            val indentationRegex = """^\s+""".toRegex(RegexOption.MULTILINE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/go.sum

    github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
    github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
    github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
    github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
    github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/link5.txt

    [Go home page]: https://duplicate.ignored
    
    They're really great!
    
    -- gofmt --
    See the [Go home page] and the [pkg
    site].
    
    They're really great!
    
    [Go home page]: https://go.dev/
    [pkg site]: https://pkg.go.dev
    
    [Go home page]: https://duplicate.ignored
    
    -- text --
    See the Go home page and the pkg site.
    
    They're really great!
    
    [Go home page]: https://go.dev/
    [pkg site]: https://pkg.go.dev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 772 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/strict/strict.go

    		if _, err := s.New(gvk); err == nil {
    			scheme = s
    			break
    		}
    	}
    	if scheme == nil {
    		return errors.Errorf("unknown configuration %#v", gvk)
    	}
    
    	opt := json.SerializerOptions{Yaml: true, Pretty: false, Strict: true}
    	serializer := json.NewSerializerWithOptions(json.DefaultMetaFactory, scheme, scheme, opt)
    	_, _, err := serializer.Decode(bytes, &gvk, nil)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 17:37:41 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/linklist4.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Cool things:
    
      - Foo
      - [Go] is great
        
        [Go]: https://go.dev/
      - Bar
    
    -- text --
    Cool things:
    
      - Foo
    
      - Go is great
    
      - Bar
    
    [Go]: https://go.dev/
    -- markdown --
    Cool things:
    
      - Foo
    
      - [Go](https://go.dev/) is great
    
      - Bar
    
    -- html --
    <p>Cool things:
    <ul>
    <li><p>Foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 407 bytes
    - Viewed (0)
  10. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great Civil War, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
Back to top