Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for assignment (0.65 sec)

  1. doc/go_spec.html

    IncDec statement    Assignment
    x++                 x += 1
    x--                 x -= 1
    </pre>
    
    
    <h3 id="Assignment_statements">Assignment statements</h3>
    
    <p>
    An <i>assignment</i> replaces the current value stored in a <a href="#Variables">variable</a>
    with a new value specified by an <a href="#Expressions">expression</a>.
    An assignment statement may assign a single value to a single variable, or multiple values to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-28759`](https://youtrack.jetbrains.com/issue/KT-28759) No not-null smartcast from direct assignment if it's split into declaration and value assignment
    - [`KT-28760`](https://youtrack.jetbrains.com/issue/KT-28760) No not-null smartcast from direct assignment of `this`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		b.AddEdgeTo(lab.target)
    
    	case ir.OAS:
    		n := n.(*ir.AssignStmt)
    		if n.X == n.Y && n.X.Op() == ir.ONAME {
    			// An x=x assignment. No point in doing anything
    			// here. In addition, skipping this assignment
    			// prevents generating:
    			//   VARDEF x
    			//   COPY x -> x
    			// which is bad because x is incorrectly considered
    			// dead before the vardef. See issue #14904.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    getTestClass(); public void evaluate() throws Throwable; protected void runWithAssignment(internal.Assignments) throws Throwable; protected void runWithIncompleteAss(internal.Assignments) throws Throwable; protected void runWithCompleteAssig(internal.Assignments) throws Throwable; private org.junit.runners.model.Statement methodCompletesWithP(org.junit.runners.model.FrameworkMethod, internal.Assignments, Object); protected void handleAssumptionViol(org.junit.internal.AssumptionViolatedEx); protected...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM.go

    	// cond: ((s > 512 || config.noDuffDevice) || t.Alignment()%4 != 0) && logLargeCopy(v, s)
    	// result: (LoweredMove [t.Alignment()] dst src (ADDconst <src.Type> src [int32(s-moveSize(t.Alignment(), config))]) mem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		t := auxToType(v.Aux)
    		dst := v_0
    		src := v_1
    		mem := v_2
    		if !(((s > 512 || config.noDuffDevice) || t.Alignment()%4 != 0) && logLargeCopy(v, s)) {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteS390X.go

    		return true
    	}
    	// match: (MOVDload [off1] {sym1} (MOVDaddr <t> [off2] {sym2} base) mem)
    	// cond: is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) && (base.Op != OpSB || (t.IsPtr() && t.Elem().Alignment()%8 == 0 && (off1+off2)%8 == 0))
    	// result: (MOVDload [off1+off2] {mergeSym(sym1,sym2)} base mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym1 := auxToSym(v.Aux)
    		if v_0.Op != OpS390XMOVDaddr {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
    
      <mime-type type="application/mpeg4-generic"/>
      <mime-type type="application/mpeg4-iod"/>
      <mime-type type="application/mpeg4-iod-xmt"/>
    
      <!-- http://www.iana.org/assignments/media-types/application/msword -->
      <mime-type type="application/msword">
        <!-- Use DefaultDetector / org.apache.tika.parser.microsoft.POIFSContainerDetector for more reliable detection of OLE2 documents -->
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top