Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for enter_1 (0.14 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    gradle init \
      --type java-application \
      --dsl kotlin \
      --test-framework junit-jupiter \
      --package my.project \
      --project-name my-project  \
      --no-split-project  \
      --java-version 17
    ```
    
    Gradle enters interactive mode and prompts the user when a required parameter for the selected project type is missing.
    
    == Supported Gradle build types
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/runtime/mfinal.go

    // a file descriptor d, and p has a finalizer that closes that file
    // descriptor, and if the last use of p in a function is a call to
    // syscall.Write(p.d, buf, size), then p may be unreachable as soon as
    // the program enters [syscall.Write]. The finalizer may run at that moment,
    // closing p.d, causing syscall.Write to fail because it is writing to
    // a closed file descriptor (or, worse, to an entirely different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/sema.go

    			// the non-starving case it is possible for a different waiter
    			// to acquire the semaphore while we are yielding/scheduling,
    			// and this would be wasteful. We wait instead to enter starving
    			// regime, and then we start to do direct handoffs of ticket and
    			// P.
    			// See issue 33747 for discussion.
    			goyield()
    		}
    	}
    }
    
    func cansemacquire(addr *uint32) bool {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/runtime/extern.go

    	keeps their state close to the point of panic. Setting
    	dontfreezetheworld=1 disables this preemption, allowing goroutines to
    	continue executing during panic processing. Note that goroutines that
    	naturally enter the scheduler will still stop. This can be useful when
    	debugging the runtime scheduler, as freezetheworld perturbs scheduler
    	state and thus may hide problems.
    
    	efence: setting efence=1 causes the allocator to run in a mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top