Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 349 for ctr2 (0.09 sec)

  1. cmd/shared-lock.go

    				// Send the lock context to anyone asking for it
    			}
    		}
    	}
    }
    
    func mergeContext(ctx1, ctx2 context.Context) (context.Context, context.CancelFunc) {
    	ctx, cancel := context.WithCancel(context.Background())
    	go func() {
    		select {
    		case <-ctx1.Done():
    		case <-ctx2.Done():
    		// The lock acquirer decides to cancel, exit this goroutine
    		case <-ctx.Done():
    		}
    
    		cancel()
    	}()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 09:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	Len     uint32
    	Snaplen uint32
    	Mac     uint16
    	Net     uint16
    	Sec     uint32
    	Usec    uint32
    	_       [4]byte
    }
    
    const (
    	SizeofTpacketHdr = 0x20
    )
    
    type RTCPLLInfo struct {
    	Ctrl    int32
    	Value   int32
    	Max     int32
    	Min     int32
    	Posmult int32
    	Negmult int32
    	Clock   int64
    }
    
    type BlkpgPartition struct {
    	Start   int64
    	Length  int64
    	Pno     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (MOVHZload [off] {sym} ptr1 (MOVHstore  [off] {sym} ptr2 x _)) && isSamePtr(ptr1, ptr2) => (MOVHZreg x)
    (MOVBZload [off] {sym} ptr1 (MOVBstore  [off] {sym} ptr2 x _)) && isSamePtr(ptr1, ptr2) => (MOVBZreg x)
    (MOVDload  [off] {sym} ptr1 (FMOVDstore [off] {sym} ptr2 x _)) && isSamePtr(ptr1, ptr2) => (LGDR x)
    (FMOVDload [off] {sym} ptr1 (MOVDstore  [off] {sym} ptr2 x _)) && isSamePtr(ptr1, ptr2) => (LDGR x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. internal/dsync/drwmutex_test.go

    		panic("Failed to acquire read lock")
    	}
    	// fmt.Println("1st read lock acquired, waiting...")
    
    	drwm2 := NewDRWMutex(ds, "simplelock")
    	ctx2, cancel2 := context.WithCancel(context.Background())
    	if !drwm2.GetRLock(ctx2, cancel2, id, source, Options{Timeout: time.Second}) {
    		panic("Failed to acquire read lock")
    	}
    	// fmt.Println("2nd read lock acquired, waiting...")
    
    	go func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 24 03:49:07 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  5. src/crypto/aes/modes.go

    type cbcDecAble interface {
    	NewCBCDecrypter(iv []byte) cipher.BlockMode
    }
    
    // ctrAble is implemented by cipher.Blocks that can provide an optimized
    // implementation of CTR through the cipher.Stream interface.
    // See crypto/cipher/ctr.go.
    type ctrAble interface {
    	NewCTR(iv []byte) cipher.Stream
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 15:32:26 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/first-steps.md

    Запустите сервер в режиме реального времени:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. docs/ja/docs/deployment/manually.md

        <span style="color: green;">INFO</span>:     Uvicorn running on http://0.0.0.0:80 (Press CTRL+C to quit)
        ```
    
        </div>
    
    === "Hypercorn"
    
        <div class="termy">
    
        ```console
        $ hypercorn main:app --bind 0.0.0.0:80
    
        Running on 0.0.0.0:8080 over http (CTRL + C to quit)
        ```
    
        </div>
    
    停止した場合に自動的に再起動させるツールを設定したいかもしれません。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. docs/pl/docs/tutorial/first-steps.md

    ```
    
    Skopiuj to do pliku `main.py`.
    
    Uruchom serwer:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. plugin/pkg/admission/storage/storageobjectinuseprotection/admission_test.go

    			pvWithFinalizer,
    			pvWithFinalizer,
    			pvWithFinalizer.Namespace,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			ctrl := newPlugin()
    
    			obj := test.object.DeepCopyObject()
    			attrs := admission.NewAttributesRecord(
    				obj,                  // new object
    				obj.DeepCopyObject(), // old object, copy to be sure it's not modified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/crypto/cipher/ctr_test.go

    		iv := make([]byte, size)
    		ctr := cipher.NewCTR(noopBlock(size), iv)
    		src := make([]byte, 1024)
    		for i := range src {
    			src[i] = 0xff
    		}
    		want := make([]byte, 1024)
    		copy(want, src)
    		counter := make([]byte, size)
    		for i := 1; i < len(want)/size; i++ {
    			inc(counter)
    			xor(want[i*size:(i+1)*size], counter)
    		}
    		dst := make([]byte, 1024)
    		ctr.XORKeyStream(dst, src)
    		if !bytes.Equal(dst, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 21:38:36 UTC 2015
    - 1.1K bytes
    - Viewed (0)
Back to top