Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 626 for plans (0.08 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionPlan.java

        /**
         * Adds an entry task to the execution plan. If called multiple times then execution plan follows the method invocation order.
         *
         */
        void addEntryTask(Task task);
    
        /**
         * Adds entry tasks to the execution plan. No ordering can be assumed between the elements of the target collection. If called multiple times then execution plan follows the method invocation order.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/model/principal.go

    // limitations under the License.
    
    package model
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	rbacpb "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3"
    	routepb "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    )
    
    func principalAny() *rbacpb.Principal {
    	return &rbacpb.Principal{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 17 18:44:57 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. istioctl/pkg/clioptions/control_plane.go

    type ControlPlaneOptions struct {
    	// Revision is the istio.io/rev control plane revision
    	Revision string
    }
    
    // AttachControlPlaneFlags attaches control-plane flags to a Cobra command.
    // (Currently just --revision)
    func (o *ControlPlaneOptions) AttachControlPlaneFlags(cmd *cobra.Command) {
    	cmd.PersistentFlags().StringVarP(&o.Revision, "revision", "r", "",
    		"Control plane revision")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 01 05:47:27 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/background-tasks.md

    # Tâches d'arrière-plan
    
    Vous pouvez définir des tâches d'arrière-plan qui seront exécutées après avoir retourné une réponse.
    
    Ceci est utile pour les opérations qui doivent avoir lieu après une requête, mais où le client n'a pas réellement besoin d'attendre que l'opération soit terminée pour recevoir une réponse.
    
    Cela comprend, par exemple :
    
    * Les notifications par email envoyées après l'exécution d'une action :
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/testdata/workloadsummary.txt

    kube-system        coredns-5dd5756b68-mgjn9                             10.244.0.2  ambient-control-plane None                                TCP
    kube-system        coredns-5dd5756b68-nzlpw                             10.244.0.3  ambient-control-plane None                                TCP
    local-path-storage local-path-provisioner-6f8956fb48-vvnpn              10.244.0.4  ambient-control-plane None                                TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 21:30:30 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/connection/SequentialExchangeFinder.kt

        while (true) {
          if (routePlanner.isCanceled()) throw IOException("Canceled")
    
          try {
            val plan = routePlanner.plan()
    
            if (!plan.isReady) {
              val tcpConnectResult = plan.connectTcp()
              val connectResult =
                when {
                  tcpConnectResult.isSuccess -> plan.connectTlsEtc()
                  else -> tcpConnectResult
                }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. releasenotes/notes/fix-47270.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 02:20:29 UTC 2024
    - 193 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/QueryableExecutionPlan.java

        /**
         * Returns the node for the supplied task that is part of this execution plan.
         *
         * @throws IllegalStateException When no node for the supplied task is part of this execution plan.
         */
        TaskNode getNode(Task task);
    
        /**
         * Returns the number of work items in the plan.
         */
        int size();
    
        /**
         * An immutable snapshot of the set of scheduled nodes.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/options/constant.go

    	ControllerManagerExtraArgs = "controller-manager-extra-args"
    
    	// ControlPlaneEndpoint flag sets a stable IP address or DNS name for the control plane.
    	ControlPlaneEndpoint = "control-plane-endpoint"
    
    	// DryRun flag instructs kubeadm to don't apply any changes; just output what would be done.
    	DryRun = "dry-run"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprogcgo/threadpanic.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !plan9
    // +build !plan9
    
    package main
    
    // void start(void);
    import "C"
    
    func init() {
    	register("CgoExternalThreadPanic", CgoExternalThreadPanic)
    }
    
    func CgoExternalThreadPanic() {
    	C.start()
    	select {}
    }
    
    //export gopanic
    func gopanic() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 428 bytes
    - Viewed (0)
Back to top