Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 349 for ctr2 (0.05 sec)

  1. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareEnum.java

             * we must create an array of objects that do.
             */
            srvsvc.ShareInfoCtr1 ctr = (srvsvc.ShareInfoCtr1)info;
            MsrpcShareInfo1[] entries = new MsrpcShareInfo1[ctr.count];
            for (int i = 0; i < ctr.count; i++) {
                entries[i] = new MsrpcShareInfo1(ctr.array[i]);
            }
            return entries;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. src/internal/coverage/test/counter_test.go

    	allfuncs := [][]decodecounter.FuncPayload{}
    	ctrs := []uint32{}
    	q := uint32(0)
    	var cdfw *encodecounter.CoverageDataWriter
    	for idx := 0; idx < numSegments; idx++ {
    		args[fmt.Sprintf("seg%d", idx)] = "x"
    		q += 7
    		ctrs = append(ctrs, q)
    		funcs := []decodecounter.FuncPayload{}
    		for k := 0; k < idx+1; k++ {
    			c := make([]uint32, len(ctrs))
    			copy(c, ctrs)
    			funcs = append(funcs, mkfunc(uint32(idx), uint32(k), c))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:34 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    	VLM   (R5), KEY0, KEY1
    	VLL   R0, (R6), NONCE
    	VZERO M0
    	VLEIB $7, $32, M0
    	VSRLB M0, NONCE, NONCE
    
    	// initialize counter values
    	VLREPF (R7), CTR
    	VZERO  INC
    	VLEIF  $1, $1, INC
    	VLEIF  $2, $2, INC
    	VLEIF  $3, $3, INC
    	VAF    INC, CTR, CTR
    	VREPIF $4, INC
    
    chacha:
    	VREPF $0, J0, X0
    	VREPF $1, J0, X1
    	VREPF $2, J0, X2
    	VREPF $3, J0, X3
    	VREPF $0, KEY0, X4
    	VREPF $1, KEY0, X5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/secondClassContextReceiver.capturing.txt

    ContainingClass[name: <this>; isMutated: false; displayText: this@Test]
        context(R|Ctx1|, R|Ctx2|)
        class Test : R|kotlin/Any|
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 14 15:22:43 UTC 2023
    - 145 bytes
    - Viewed (0)
  5. src/internal/trace/testdata/testprog/annotations-stress.go

    	}
    	t1.End()
    
    	// Create a task that starts during the trace and ends after.
    	ctx2, t2 := trace.NewTask(ctx0, "type2")
    
    	// Create a task that starts and ends during the trace.
    	ctx3, t3 := trace.NewTask(baseCtx, "type3")
    
    	// Generate some events.
    	for i := 0; i < 2; i++ {
    		do(baseCtx, 4)
    		do(ctx0, 2)
    		do(ctx1, 3)
    		do(ctx2, 6)
    		do(ctx3, 5)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/debug/pe/symbols_test.go

    	// corresponds to the mingw "crt2.o" object. The object itself was
    	// built using an x86_64 HOST=linux TARGET=windows clang cross
    	// compiler based on LLVM 13. More build details can be found at
    	// https://github.com/mstorsjo/llvm-mingw/releases.
    	f, err := Open("testdata/llvm-mingw-20211002-msvcrt-x86_64-crt2")
    	if err != nil {
    		t.Errorf("open failed with %v", err)
    	}
    	defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. src/context/example_test.go

    	defer cancel1(errors.New("ctx1 canceled"))
    
    	ctx2, cancel2 := context.WithCancelCause(context.Background())
    
    	mergedCtx, mergedCancel := mergeCancel(ctx1, ctx2)
    	defer mergedCancel()
    
    	cancel2(errors.New("ctx2 canceled"))
    	<-mergedCtx.Done()
    	fmt.Println(context.Cause(mergedCtx))
    
    	// Output:
    	// ctx2 canceled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 20:24:28 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleFunctionContextReceivers.txt

    public final class CodeFragment {
        // source: 'fragment.kt'
        public method <init>(): void
        public final static method run(p0: Ctx1, p1: Ctx2): int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 14 15:22:43 UTC 2023
    - 158 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/reflectdata/alg_test.go

    	type T2 struct {
    		a string
    		b int
    	}
    	const size = 1024
    	var (
    		str1 = "foobar"
    		str2 = "foobarz"
    
    		a [size]T2
    		c [size]T2
    	)
    
    	for i := 0; i < size; i++ {
    		a[i].a = str1
    		c[i].a = str1
    	}
    	c[len(c)-1].a = str2
    
    	b.ResetTimer()
    	for j := 0; j < b.N; j++ {
    		_ = a == c
    	}
    }
    
    const size = 16
    
    type T1 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. test-site/README.md

    Test site for fess-suggest
    =================================
    
    ## Usage
    
    Start site.
    ```
    $ activator run
    ```
    
    Finish site. Ctrl + D
    
    ### URLs
    * test-site : http://localhost:9000
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 09:13:55 UTC 2015
    - 217 bytes
    - Viewed (0)
Back to top