Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AppDev (0.07 sec)

  1. samples/ambient-argo/README.md

    ### Role: Application Developer
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

      CU_pSuite       pSuite;         /**< Suite containing test having failure. */
    
      struct CU_FailureRecord* pNext; /**< Pointer to next record in linked list. */
      struct CU_FailureRecord* pPrev; /**< Pointer to previous record in linked list. */
    
    } CU_FailureRecord;
    typedef CU_FailureRecord* CU_pFailureRecord;  /**< Pointer to CU_FailureRecord. */
    
    /* CU_RunSummary type definition. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

      jmp_buf*        pJumpBuf;   /**< Jump buffer for setjmp/longjmp test abort mechanism. */
    
      struct CU_Test* pNext;      /**< Pointer to the next test in linked list. */
      struct CU_Test* pPrev;      /**< Pointer to the previous test in linked list. */
    
    } CU_Test;
    typedef CU_Test* CU_pTest;    /**< Pointer to a CUnit test case. */
    
    /*-----------------------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    type specialsIter struct {
    	pprev **special
    	s     *special
    }
    
    func newSpecialsIter(span *mspan) specialsIter {
    	return specialsIter{&span.specials, span.specials}
    }
    
    func (i *specialsIter) valid() bool {
    	return i.s != nil
    }
    
    func (i *specialsIter) next() {
    	i.pprev = &i.s.next
    	i.s = *i.pprev
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    				}
    			}
    
    			s.Grow(p.Pc + int64(m))
    			copy(s.P[p.Pc:], ab.Bytes())
    			// If there was padding, remember it.
    			if pPrev != nil && !ctxt.IsAsm && c > c0 {
    				nops = append(nops, nopPad{p: pPrev, n: c - c0})
    			}
    			c += int32(m)
    			pPrev = p
    		}
    
    		n++
    		if n > 1000 {
    			ctxt.Diag("span must be looping")
    			log.Fatalf("loop")
    		}
    		if !reAssemble {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		// won't write to it when calling VDSO code.
    		mp.gsignal = nil
    	}
    
    	// Remove m from allm.
    	lock(&sched.lock)
    	for pprev := &allm; *pprev != nil; pprev = &(*pprev).alllink {
    		if *pprev == mp {
    			*pprev = mp.alllink
    			goto found
    		}
    	}
    	throw("m not found in allm")
    found:
    	// Events must not be traced after this point.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top