Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 133 for enter_1 (0.12 sec)

  1. cni/pkg/iptables/iptables.go

    		"--mark", inpodMark,
    		"-j", "CONNMARK",
    		"--set-xmark", inpodTproxyMark)
    
    	// Handle healthcheck probes from the host node. In the host netns, before the packet enters the pod, we SNAT
    	// the healthcheck packet to a fixed IP if the packet is coming from a node-local process with a socket.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K 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. 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)
  5. 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)
  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. 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)
  10. src/runtime/mgcmark.go

    	if getg() == gp.m.g0 {
    		return
    	}
    	if mp := getg().m; mp.locks > 0 || mp.preemptoff != "" {
    		return
    	}
    
    	// This extremely verbose boolean indicates whether we've
    	// entered mark assist from the perspective of the tracer.
    	//
    	// In the tracer, this is just before we call gcAssistAlloc1
    	// *regardless* of whether tracing is enabled. This is because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top