Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for ctr2 (0.05 sec)

  1. docs/ru/docs/python-types.md

    Было это `upper`? Или `uppercase`? `first_uppercase`? `capitalize`?
    
    Тогда вы попробуете с давним другом программиста: автодополнением редактора.
    
    Вы вводите первый параметр функции, `first_name`, затем точку (`.`), а затем нажимаете `Ctrl+Space`, чтобы запустить дополнение.
    
    Но, к сожалению, ничего полезного не выходит:
    
    <img src="/img/python-types/image01.png">
    
    ### Добавим типы
    
    Давайте изменим одну строчку в предыдущей версии.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

            daemons.daemon.log.contains(DaemonMessages.CANCELED_BUILD)
        }
    
        /**
         * When the daemon is started on *nix, we need to detach it from the terminal session of the parent process,
         * otherwise if a ctrl-c is entered on the terminal, it will kill all processes in the session.  This test compiles
         * a native executable that can retrieve the session id of a process so that we can verify that the session id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// Loop code:
    		//	MOVD len/32,R31		set up loop ctr
    		//	MOVD R31,CTR
    		//	MOVD $16,R31		index register
    		// loop:
    		//	LXVD2X (R0)(R4),VS32
    		//	LXVD2X (R31)(R4),VS33
    		//	ADD  R4,$32          increment src
    		//	STXVD2X VS32,(R0)(R3)
    		//	STXVD2X VS33,(R31)(R3)
    		//	ADD  R3,$32          increment dst
    		//	BC 16,0,loop         branch ctr
    		// For this purpose, VS32 and VS33 are treated as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/behind-a-proxy.md

    <div class="termy">
    
    ```console
    $ fastapi run main.py --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    If you use Hypercorn, it also has the option `--root-path`.
    
    !!! note "Technical Details"
        The ASGI specification defines a `root_path` for this use case.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    			}
    		}
    		return op + " " + strings.Join(args, ",")
    	case BCCTR:
    		if int(inst.Args[0].(Imm))&20 == 20 { // unconditional
    			return "BR (CTR)"
    		}
    		return op + " " + strings.Join(args, ", ")
    	case BCCTRL:
    		if int(inst.Args[0].(Imm))&20 == 20 { // unconditional
    			return "BL (CTR)"
    		}
    		return op + " " + strings.Join(args, ",")
    	case BCA, BCL, BCLA, BCLRL, BCTAR, BCTARL:
    		return op + " " + strings.Join(args, ",")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    	podStateProvider.removed["789"] = struct{}{}
    	podStateProvider.removed["654"] = struct{}{}
    
    	ctrl := gomock.NewController(t)
    	defer ctrl.Finish()
    
    	fakeOS.ReadDirFn = func(string) ([]os.DirEntry, error) {
    		var dirEntries []os.DirEntry
    		for _, file := range files {
    			mockDE := containertest.NewMockDirEntry(ctrl)
    			mockDE.EXPECT().Name().Return(file)
    			dirEntries = append(dirEntries, mockDE)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa.go

    	// which is an indifferentiable MAC.
    
    	// Create an AES-CTR instance to use as a CSPRNG.
    	block, err := aes.NewCipher(key)
    	if err != nil {
    		return nil, err
    	}
    
    	// Create a CSPRNG that xors a stream of zeros with
    	// the output of the AES-CTR instance.
    	const aesIV = "IV for ECDSA CTR"
    	return &cipher.StreamReader{
    		R: zeroReader,
    		S: cipher.NewCTR(block, []byte(aesIV)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/SessionTest.java

            CIFSContext ctx1 = withTestNTLMCredentials(getContext());
            CIFSContext ctx2 = withAnonymousCredentials();
            String loc = getTestShareGuestURL();
            try ( SmbResource f1 = ctx1.get(loc) ) {
                f1.exists();
                try ( SmbResource f2 = ctx2.get(loc) ) {
                    f2.exists();
                    connectionMatches(f1, f2);
                }
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  9. src/encoding/gob/codec_test.go

    	Str1 any // basic
    	Str2 any // derived
    }
    
    // We'll send pointers; should receive values.
    // Also check that we can register T but send *T.
    func TestInterfacePointer(t *testing.T) {
    	b := new(bytes.Buffer)
    	str1 := "howdy"
    	str2 := String("kiddo")
    	item1 := &PtrInterfaceItem{
    		&str1,
    		&str2,
    	}
    	// Register the type.
    	Register(str2)
    	err := NewEncoder(b).Encode(item1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/build_xla_ops_pass.cc

      // either of two nodes (denoted as A and B below) are alive, in the following
      // manner:
      //
      //   A --ctrl--> Const0 --data--> Merge --data--> Identity
      //                                 ^                 |
      //                                 |                ctrl
      //   B --ctrl--> Const1 --data-----+                 |
      //                                                   v
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top