Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,482 for qtext (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramSource.kt

        constructor(path: String, contents: String) : this(path, text(contents))
    
        val text: String
            get() = contents.text
    
        fun map(transform: (ProgramText) -> ProgramText) =
            ProgramSource(path, transform(contents))
    }
    
    
    /**
     * Normalised program text guaranteed to use `\n` as the only line terminator character.
     */
    data class ProgramText private constructor(val text: String) {
    
        companion object {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DispatchingBuildCacheIntegrationTest.groovy

                    File inputFile
                    @Internal
                    File cacheOrigin
    
                    @TaskAction void doSomething() {
                        outputFile.text = inputFile.text + cacheOrigin.text
                    }
                }
            """.stripIndent()
        }
    
        def 'push to local'() {
            pushToLocal()
    
            when:
            withBuildCache().run cacheableTask
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 15:17:04 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/code2.txt

    -- input --
    Text.
    
    	A tab-indented
    	(no, not eight-space indented)
    	code block and haiku.
    
    More text.
    -- gofmt --
    Text.
    
    	A tab-indented
    	(no, not eight-space indented)
    	code block and haiku.
    
    More text.
    -- markdown --
    Text.
    
    	A tab-indented
    	(no, not eight-space indented)
    	code block and haiku.
    
    More text.
    -- html --
    <p>Text.
    <pre>A tab-indented
    (no, not eight-space indented)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:47 UTC 2022
    - 423 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.1.txt

    	if len(prefs) == 0 {
    		prefs = DefaultUserPrefs()
    	}
    	return hello.find(prefs)
    }
    
    // A text is a localized text.
    type text struct {
    	byTag   map[string]string
    	matcher language.Matcher
    }
    
    // newText creates a new localized text, given a list of translations.
    func newText(s string) *text {
    	t := &text{
    		byTag: make(map[string]string),
    	}
    	var tags []language.Tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 17:49:01 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/ProjectsPageRenderer.java

                        meta().httpEquiv("Content-Type").content("text/html; charset=utf-8");
                        meta().httpEquiv("x-ua-compatible").content("IE=edge");
                        link().rel("stylesheet").type("text/css").href(baseCssLink).end();
                        link().rel("stylesheet").type("text/css").href(cssLink).end();
                        title().text("Dependency reports").end();
                    end();
                    body();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 03 18:14:21 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

        def "init script can declare build logic input"() {
            given:
            TestFile buildLogicInput = file('input.txt').tap {
                text = 'foo!'
            }
            TestFile initScript = file('initscript.gradle').tap {
                text = """
                    // TODO: replace by public API
                    def providers = gradle.services.get(ProviderFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/runtime/sys_plan9_386.s

    	RET
    
    TEXT runtime·closefd(SB),NOSPLIT,$0
    	MOVL	$4, AX
    	INT	$64
    	MOVL	AX, ret+4(FP)
    	RET
    
    TEXT runtime·exits(SB),NOSPLIT,$0
    	MOVL    $8, AX
    	INT     $64
    	RET
    
    TEXT runtime·brk_(SB),NOSPLIT,$0
    	MOVL    $24, AX
    	INT     $64
    	MOVL	AX, ret+4(FP)
    	RET
    
    TEXT runtime·sleep(SB),NOSPLIT,$0
    	MOVL    $17, AX
    	INT     $64
    	MOVL	AX, ret+4(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title><la:message key="labels.admin_brand_title"/> | <la:message
                key="labels.crawler_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/report/HtmlTestResultsFixture.groovy

            def tab = findTab('Failed tests')
            assert tab != null && !tab.isEmpty()
            assert tab.select("pre").find { TextUtil.normaliseLineSeparators(it.text()) == stackTrace.trim() }
        }
    
        private def findTestDetails(String testName) {
            def tab = findTab('Tests')
            def anchor = tab.select("TD").find { it.text() == testName }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/runtime/sys_freebsd_arm.s

    	MOVW	R0, ret+12(FP)
    	RET
    
    TEXT runtime·closefd(SB),NOSPLIT|NOFRAME,$0
    	MOVW fd+0(FP), R0	// arg 1 fd
    	MOVW $SYS_close, R7
    	SWI $0
    	MOVW.CS	$-1, R0
    	MOVW	R0, ret+4(FP)
    	RET
    
    TEXT runtime·thr_self(SB),NOSPLIT,$0-4
    	// thr_self(&0(FP))
    	MOVW $ret+0(FP), R0 // arg 1
    	MOVW $SYS_thr_self, R7
    	SWI $0
    	RET
    
    TEXT runtime·thr_kill(SB),NOSPLIT,$0-8
    	// thr_kill(tid, sig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top