Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Epost (0.12 sec)

  1. src/cmd/compile/internal/test/testdata/copy_test.go

    // Code generated by gen/copyGen.go. DO NOT EDIT.
    
    package main
    
    import "testing"
    
    type T1 struct {
    	pre  [8]byte
    	mid  [1]byte
    	post [8]byte
    }
    
    //go:noinline
    func t1copy_ssa(y, x *[1]byte) {
    	*y = *x
    }
    func testCopy1(t *testing.T) {
    	a := T1{[8]byte{201, 202, 203, 204, 205, 206, 207, 208}, [1]byte{0}, [8]byte{211, 212, 213, 214, 215, 216, 217, 218}}
    	x := [1]byte{100}
    	t1copy_ssa(&a.mid, &x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"LD1 (single structure)","Bits":"0|Q|0|0|1|1|0|1|1|1|0|Rm:5|100:3|S|00:2|Rn:5|Rt:5","Arch":"Post-index 32-bit, register offset variant","Syntax":"LD1 { <Vt>.S }[<index>], [<Xn|SP>], <Xm>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    	{AFMOVS, C_FREG, C_NONE, C_NONE, C_ROFF, C_NONE, 99, 4, 0, 0, 0},
    	{AFMOVD, C_FREG, C_NONE, C_NONE, C_ROFF, C_NONE, 99, 4, 0, 0, 0},
    
    	/* pre/post-indexed/signed-offset load/store register pair
    	   (unscaled, signed 10-bit quad-aligned and long offset).
    	The pre/post-indexed format only supports OREG cases because
    	the RSP and pseudo registers are not allowed to be modified
    	in this way. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    // See issue 55122 for details.
    //
    // Because expand calls runs after prove, constants useful to this pattern may not appear.
    // Both versions need to exist; the memory and register variants.
    //
    // Match post-expansion calls, memory version.
    (SelectN [0] call:(StaticCall {sym} s1:(Store _ (Const(64|32) [sz]) s2:(Store  _ src s3:(Store {t} _ dst mem)))))
    	&& sz >= 0
    	&& isSameCall(sym, "runtime.memmove")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

              </description>
              <type>String</type>
            </field>
            <field>
              <name>post</name>
              <version>3.0.0+</version>
              <description>
                The email address or link that can be used to post to
                the mailing list.  If this is an email address, a
                {@code mailto:} link will automatically be created
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_FACSIMILE_TELEPHONE_NUMBER = "{labels.facsimileTelephoneNumber}";
    
        /** The key of the message: Post Office Box */
        public static final String LABELS_user_postOfficeBox = "{labels.user_postOfficeBox}";
    
        /** The key of the message: Post Office Box */
        public static final String LABELS_POST_OFFICE_BOX = "{labels.postOfficeBox}";
    
        /** The key of the message: Initials */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	"cmd/internal/buildid"
    	"cmd/internal/quoted"
    	"cmd/internal/sys"
    )
    
    const DefaultCFlags = "-O2 -g"
    
    // actionList returns the list of actions in the dag rooted at root
    // as visited in a depth-first post-order traversal.
    func actionList(root *Action) []*Action {
    	seen := map[*Action]bool{}
    	all := []*Action{}
    	var walk func(*Action)
    	walk = func(a *Action) {
    		if seen[a] {
    			return
    		}
    		seen[a] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    <p>
    A "for" statement with a ForClause is also controlled by its condition, but
    additionally it may specify an <i>init</i>
    and a <i>post</i> statement, such as an assignment,
    an increment or decrement statement. The init statement may be a
    <a href="#Short_variable_declarations">short variable declaration</a>, but the post statement must not.
    Variables declared by the init statement are re-used in each iteration.
    </p>
    
    <pre class="ebnf">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    func (p *Package) UsesCgo() bool {
    	return len(p.CgoFiles) > 0
    }
    
    // PackageList returns the list of packages in the dag rooted at roots
    // as visited in a depth-first post-order traversal.
    func PackageList(roots []*Package) []*Package {
    	seen := map[*Package]bool{}
    	all := []*Package{}
    	var walk func(*Package)
    	walk = func(p *Package) {
    		if seen[p] {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        /**
         * Performs routine cleanup prior to executing a write. This should be called every time a write
         * thread acquires the segment lock, immediately after acquiring the lock.
         *
         * <p>Post-condition: expireEntries has been run.
         */
        @GuardedBy("this")
        void preWriteCleanup(long now) {
          runLockedCleanup(now);
        }
    
        /** Performs routine cleanup following a write. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top