Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for reAssemble (0.21 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    		}
    	}
    	if toPad <= 0 {
    		return c
    	}
    
    	return noppad(ctxt, s, c, toPad)
    }
    
    // reAssemble is called if an instruction's size changes during assembly. If
    // it does and the instruction is a standalone or a macro-fused jump we need to
    // reassemble.
    func (pjc padJumpsCtx) reAssemble(p *obj.Prog) bool {
    	if pjc == 0 {
    		return false
    	}
    
    	fj, _ := fusedJump(p)
    	return fj || isJump(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. docs/fr/docs/tutorial/first-steps.md

    #### Allez voir `openapi.json`
    
    Si vous êtes curieux d'à quoi ressemble le schéma brut **OpenAPI**, **FastAPI** génère automatiquement un (schéma) JSON avec les descriptions de toute votre API.
    
    Vous pouvez le voir directement à cette adresse : <a href="http://127.0.0.1:8000/openapi.json" class="external-link" target="_blank">http://127.0.0.1:8000/openapi.json</a>.
    
    Le schéma devrait ressembler à ceci :
    
    
    ```JSON
    {
        "openapi": "3.0.2",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageIncrementalBuildIntegrationTest.groovy

        def "does not re-execute build with no change"() {
            when:
            run "mainExecutable"
    
            then:
            allSkipped()
        }
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        def "reassembles binary with assembler option change"() {
            when:
            buildFile << """
                model {
                    components {
                        hello {
                            binaries.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    #include "textflag.h"
    
    // function to call USS assembly language services
    //
    // doc: https://www.ibm.com/support/knowledgecenter/en/SSLTBW_3.1.0/com.ibm.zos.v3r1.bpxb100/bit64env.htm
    //
    //   arg1 unsafe.Pointer array that ressembles an OS PLIST
    //
    //   arg2 function offset as in
    //       doc: https://www.ibm.com/support/knowledgecenter/en/SSLTBW_3.1.0/com.ibm.zos.v3r1.bpxb100/bpx2cr_List_of_offsets.htm
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    The attributes will resemble the following.  User-configurable attributes are highlighted below the sample.
    
    .outgoingVariants task output
    [source,text]
    ----
    --------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. docs/fr/docs/contributing.md

    Si vous allez sur votre navigateur, vous verrez que maintenant les documents montrent votre nouvelle section. 🎉
    
    Vous pouvez maintenant tout traduire et voir à quoi cela ressemble au fur et à mesure que vous enregistrez le fichier.
    
    #### Nouvelle langue
    
    Disons que vous voulez ajouter des traductions pour une langue qui n'est pas encore traduite, pas même quelques pages.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    The attributes will resemble the following.  User-configurable attributes are highlighted below the sample.
    
    .outgoingVariants task output
    [source,text]
    ----
    --------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/testing/benchmark.go

    // used to give some meaningful results in case func Benchmark is used in
    // combination with Run.
    func (b *B) add(other BenchmarkResult) {
    	r := &b.result
    	// The aggregated BenchmarkResults resemble running all subbenchmarks as
    	// in sequence in a single benchmark.
    	r.N = 1
    	r.T += time.Duration(other.NsPerOp())
    	if other.Bytes == 0 {
    		// Summing Bytes is meaningless in aggregate if not all subbenchmarks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/engine.go

    // and stderr output of a prior command, tracked in a [State] that commands can
    // inspect and modify.
    //
    // The default commands configured by [NewEngine] resemble a simplified Unix
    // shell.
    //
    // # Script Language
    //
    // Each line of a script is parsed into a sequence of space-separated command
    // words, with environment variable expansion within each word and # marking an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  10. docs/fr/docs/alternatives.md

    ```Python
    response = requests.get("http://example.com/some/url")
    ```
    
    En contrepartie l'API _des opérations de chemin_ de FastAPI pourrait ressembler à ceci :
    
    ```Python hl_lines="1"
    @app.get("/some/url")
    def read_url():
        return {"message": "Hello World"}
    ```
    
    Notez les similitudes entre `requests.get(...)` et `@app.get(...)`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top