Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for reAssemble (0.28 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. 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)
  3. 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)
  4. 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)
  5. src/net/url/url.go

    		return true
    	}
    	if port[0] != ':' {
    		return false
    	}
    	for _, b := range port[1:] {
    		if b < '0' || b > '9' {
    			return false
    		}
    	}
    	return true
    }
    
    // String reassembles the [URL] into a valid URL string.
    // The general form of the result is one of:
    //
    //	scheme:opaque?query#fragment
    //	scheme://userinfo@host/path?query#fragment
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	for _, tt := range RunesTests {
    		a := []rune(tt.in)
    		if !runesEqual(a, tt.out) {
    			t.Errorf("[]rune(%q) = %v; want %v", tt.in, a, tt.out)
    			continue
    		}
    		if !tt.lossy {
    			// can only test reassembly if we didn't lose information
    			s := string(a)
    			if s != tt.in {
    				t.Errorf("string([]rune(%q)) = %x; want %x", tt.in, s, tt.in)
    			}
    		}
    	}
    }
    
    func TestReadByte(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    		tin := []byte(tt.in)
    		a := Runes(tin)
    		if !runesEqual(a, tt.out) {
    			t.Errorf("Runes(%q) = %v; want %v", tin, a, tt.out)
    			continue
    		}
    		if !tt.lossy {
    			// can only test reassembly if we didn't lose information
    			s := string(a)
    			if s != tt.in {
    				t.Errorf("string(Runes(%q)) = %x; want %x", tin, s, tin)
    			}
    		}
    	}
    }
    
    type TrimTest struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. RELEASE.md

    *   New python 3 docker images added.
    *   Made pip packages pypi compliant. TensorFlow can now be installed by `pip
        install tensorflow` command.
    *   Several python API calls have been changed to resemble NumPy more closely.
    *   Android: person detection + tracking demo implementing Scalable Object
        Detection using Deep Neural Networks.
    *   New (experimental)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top