Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,262 for qtext (0.05 sec)

  1. src/internal/dag/parse.go

    	for {
    		if p.text == "" {
    			return ""
    		}
    		switch p.text[0] {
    		case ';', ',', '<':
    			t := p.text[:1]
    			p.text = p.text[1:]
    			return t
    
    		case '!':
    			if len(p.text) < 2 || p.text[1] != '<' {
    				p.syntaxError("unexpected token !")
    			}
    			p.text = p.text[2:]
    			return "!<"
    
    		case '#':
    			i := strings.Index(p.text, "\n")
    			if i < 0 {
    				i = len(p.text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K 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. 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)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

                        def input = inputDirectory.file("output.txt").get().asFile
                        if (input.file) {
                            outputFile.asFile.get().text = input.text
                        } else {
                            outputFile.asFile.get().text = "<empty>"
                        }
                    }
                }
    
                task sourceTask(type: Producer) {
                    sources = file("sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

            if (Constants.DEFAULT_FIELD.equals(field)) {
                final String text = term.text();
                context.addFieldLog(field, text);
                context.addHighlightedQuery(text);
                return buildDefaultQueryBuilder(fessConfig, context,
                        (f, b) -> QueryBuilders.fuzzyQuery(f, text).fuzziness(Fuzziness.fromEdits(fuzzyQuery.getMaxEdits())).boost(b * boost)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/syscall/mksyscall.pl

    		$text .= "\t}\n";
    	} elsif ($do_errno) {
    		$text .= "\tif e1 != 0 {\n";
    		$text .= "\t\terr = errnoErr(e1)\n";
    		$text .= "\t}\n";
    	}
    	$text .= "\treturn\n";
    	$text .= "}\n\n";
    	if($libc) {
    		if (not exists $trampolines{$funcname}) {
    			$trampolines{$funcname} = 1;
    			# The assembly trampoline that jumps to the libc routine.
    			$text .= "func ${funcname}_trampoline()\n\n";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/runtime/asm_mipsx.s

    GLOBL	runtime·mainPC(SB),RODATA,$4
    
    TEXT runtime·breakpoint(SB),NOSPLIT,$0-0
    	BREAK
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT,$0-0
    	RET
    
    TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0
    	JAL	runtime·mstart0(SB)
    	RET // not reached
    
    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtime·gogo(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	buf+0(FP), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceHttpTest.kt

              |
              """.trimMargin(),
            )
            .setHeader("content-type", "text/event-stream")
            .build(),
        )
        newEventSource("text/plain")
        listener.assertOpen()
        listener.assertEvent(null, null, "hey")
        listener.assertClose()
        assertThat(server.takeRequest().headers["Accept"]).isEqualTo("text/plain")
      }
    
      @Test
      fun setsMissingAccept() {
        server.enqueue(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

                        outputFile.text = "produced"
                    }
                }
    
                task consumer {
                    def inputFile = file("${consumedLocation}")
                    def outputFile = file("consumerOutput.txt")
                    inputs.files(inputFile)
                    outputs.file(outputFile)
                    doLast {
                        outputFile.text = "consumed"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/runtime/asm_s390x.s

    // AES hashing not implemented for s390x
    TEXT runtime·memhash(SB),NOSPLIT|NOFRAME,$0-32
    	JMP	runtime·memhashFallback(SB)
    TEXT runtime·strhash(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·strhashFallback(SB)
    TEXT runtime·memhash32(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash32Fallback(SB)
    TEXT runtime·memhash64(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash64Fallback(SB)
    
    TEXT runtime·return0(SB), NOSPLIT, $0
    	MOVW	$0, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top