Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 129 for ENTER (0.11 sec)

  1. src/runtime/preempt.go

    // bound check in function prologues. To preempt a goroutine at the
    // next synchronous safe-point, the runtime poisons the goroutine's
    // stack bound to a value that will cause the next stack bound check
    // to fail and enter the stack growth implementation, which will
    // detect that it was actually a preemption and redirect to preemption
    // handling.
    //
    // Preemption at asynchronous safe-points is implemented by suspending
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

                return null;
            }
    
            String version = javaVersion.getOrNull();
            if (isNullOrEmpty(version)) {
                return JavaLanguageVersion.of(userQuestions.askIntQuestion("Enter target Java version", MINIMUM_VERSION_SUPPORTED_BY_FOOJAY_API, DEFAULT_JAVA_VERSION));
            }
    
            try {
                int parsedVersion = Integer.parseInt(version);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler.go

    		events := e.EventsToRegister()
    
    		// This will happen when plugin registers with empty events, it's usually the case a pod
    		// will become reschedulable only for self-update, e.g. schedulingGates plugin, the pod
    		// will enter into the activeQ via priorityQueue.Update().
    		if len(events) == 0 {
    			continue
    		}
    
    		// Note: Rarely, a plugin implements EnqueueExtensions but returns nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. src/encoding/xml/xml_test.go

    	d2 := NewTokenDecoder(d)
    	if d != d2 {
    		t.Error("NewTokenDecoder did not detect underlying Decoder")
    	}
    }
    
    func TestWrapDecoder(t *testing.T) {
    	d := NewDecoder(strings.NewReader(`<quote>[Re-enter Clown with a letter, and FABIAN]</quote>`))
    	m := tokenMap(func(t Token) Token {
    		switch tok := t.(type) {
    		case StartElement:
    			if tok.Name.Local == "quote" {
    				tok.Name.Local = "blocking"
    				return tok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          } else {
            showDialog(null);
            location.reload();  // Reload to show updated config menu
          }
        });
      }
    
      function handleSaveInputKey(e) {
        if (e.key === 'Enter') commitSave(e);
      }
    
      function deleteConfig(e, elem) {
        e.preventDefault();
        const config = elem.dataset.config;
        delPrompt.innerText = 'Delete ' + config + '?';
        currentDeleteTarget = elem;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/gradients.cc

      std::vector<Output> dx;
      TF_RETURN_IF_ERROR(AddWhileLoopGradient(while_ctx, while_scope, dy, &dx));
    
      // Backprop along the in edges to the while loop (i.e. the inputs to the enter
      // nodes)
      DCHECK_EQ(dx.size(), while_ctx->enter_nodes().size());
      for (int i = 0, end = dx.size(); i < end; ++i) {
        Node* enter_node = while_ctx->enter_nodes()[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/security/first-steps.md

    `パスワード`の「フロー」は、OAuth2で定義されているセキュリティと認証を扱う方法 (「フロー」) の1つです。
    
    OAuth2は、バックエンドやAPIがユーザーを認証するサーバーから独立したものとして設計されていました。
    
    しかし、この場合、同じ**FastAPI**アプリケーションがAPIと認証を処理します。
    
    そこで、簡略化した箇所から見直してみましょう:
    
    * ユーザーはフロントエンドで`ユーザー名`と`パスワード`を入力し、`Enter`を押します。
    * フロントエンド (ユーザーのブラウザで実行中) は、`ユーザー名`と`パスワード`をAPIの特定のURL (`tokenUrl="token"`で宣言された) に送信します。
    * APIは`ユーザー名`と`パスワード`をチェックし、「トークン」を返却します (まだ実装していません)。
        * 「トークン」はただの文字列であり、あとでこのユーザーを検証するために使用します。
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    // license that can be found in the LICENSE file.
    
    // Go execution tracer.
    // The tracer captures a wide range of execution events like goroutine
    // creation/blocking/unblocking, syscall enter/exit/block, GC-related events,
    // changes of heap size, processor start/stop, etc and writes them to a buffer
    // in a compact form. A precise nanosecond-precision timestamp and a stack
    // trace is captured for most events.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    			delay *= 2
    		}
    		if delay > 10*1000 { // up to 10ms
    			delay = 10 * 1000
    		}
    		usleep(delay)
    
    		// sysmon should not enter deep sleep if schedtrace is enabled so that
    		// it can print that information at the right time.
    		//
    		// It should also not enter deep sleep if there are any active P's so
    		// that it can retake P's from syscalls, preempt long running G's, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. pkg/controller/resourcequota/resource_quota_controller.go

    				curResourceQuota := cur.(*v1.ResourceQuota)
    				if quota.Equals(oldResourceQuota.Spec.Hard, curResourceQuota.Spec.Hard) {
    					return
    				}
    				rq.addQuota(logger, curResourceQuota)
    			},
    			// This will enter the sync loop and no-op, because the controller has been deleted from the store.
    			// Note that deleting a controller immediately after scaling it to 0 will not work. The recommended
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top