Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 266 for qtext (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

    import org.gradle.internal.exceptions.StyledException;
    import org.gradle.internal.logging.text.BufferingStyledTextOutput;
    import org.gradle.internal.logging.text.LinePrefixingStyledTextOutput;
    import org.gradle.internal.logging.text.StyledTextOutput;
    import org.gradle.internal.logging.text.StyledTextOutputFactory;
    import org.gradle.util.internal.GUtil;
    
    import javax.annotation.Nonnull;
    import java.util.ArrayDeque;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/runtime/asm_loong64.s

    DATA	runtime·mainPC+0(SB)/8,$runtime·main<ABIInternal>(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$8
    
    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    	BREAK
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    TEXT runtime·mstart(SB),NOSPLIT|TOPFRAME,$0
    	JAL     runtime·mstart0(SB)
    	RET // not reached
    
    // func cputicks() int64
    TEXT runtime·cputicks(SB),NOSPLIT,$0-8
    	RDTIMED	R0, R4
    	MOVV	R4, ret+0(FP)
    	RET
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an.py

                "/files/",
                data={"token": "foo"},
                files={"file": filea, "fileb": ("testb.txt", fileb, "text/plain")},
            )
        assert response.status_code == 200, response.text
        assert response.json() == {
            "file_size": 14,
            "token": "foo",
            "fileb_content_type": "text/plain",
        }
    
    
    def test_openapi_schema(client: TestClient):
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

        }
    
        def assertTransformExecuted() {
            outputContains(TRANSFORM_EXECUTED)
            return true
        }
    
        static def toUnix(String text) {
            return text
        }
    
        static def toWindows(String text) {
            return text.replaceAll('\\n', '\r\n')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

            protected void applyChangeTo(BuildContext context, StringBuilder text) {
                replaceVersion(text, "androidGradlePlugin", "$agpVersion")
                replaceVersion(text, "kotlin", "$kgpVersion")
    
                // See https://developer.android.com/jetpack/androidx/releases/compose-kotlin#pre-release_kotlin_compatibility
                replaceVersion(text, "androidxComposeCompiler", "1.5.8")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. .idea/inspectionProfiles/Gradle.xml

          <replaceConfiguration name="Join combined with collect" suppressId="join_with_collect" problemDescriptor="Use a `join` method overload" text="$callJoin$($sep$, $callCollect$($src$, $transform$))" recursive="false" caseInsensitive="false" type="JAVA" pattern_context="default" reformatAccordingToStyle="true" shortenFQN="true" useStaticImport="true" replacement="org.gradle.util.internal.C...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/runtime/asm_ppc64x.s

    	RET
    
    // AES hashing not implemented for ppc64
    TEXT runtime·memhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-32
    	JMP	runtime·memhashFallback<ABIInternal>(SB)
    TEXT runtime·strhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·strhashFallback<ABIInternal>(SB)
    TEXT runtime·memhash32<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash32Fallback<ABIInternal>(SB)
    TEXT runtime·memhash64<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top