Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,573 for NCases (0.09 sec)

  1. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package phases
    
    import (
    	"os"
    	"path/filepath"
    	"testing"
    
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/preflight"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. docs/es/docs/features.md

    * **Validación automática** inclusive para parámetros del *path operation* definidos en las dependencias.
    * Soporte para sistemas complejos de autenticación de usuarios, **conexiones con bases de datos**, etc.
    * **Sin comprometerse** con bases de datos, frontend, etc. Pero permitiendo integración fácil con todos ellos.
    
    ### "Plug-ins" ilimitados
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java

            this.id = id;
        } // -- void setId( String )
    
        /**
         * Set the phase mappings for this lifecycle.
         *
         * @param phases a phases object.
         */
        public void setPhases(java.util.List<Phase> phases) {
            this.phases = phases;
        } // -- void setPhases( java.util.List )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleStarter.java

                            + " <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>."
                            + " Available lifecycle phases are: " + defaultLifeCycles.getLifecyclePhaseList() + ".");
                }
    
                if (logger.isDebugEnabled()) {
                    lifecycleDebugLogger.debugReactorPlan(projectBuilds);
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:56:36 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/kubeconfig.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeconfigphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/kubeconfig"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    )
    
    var (
    	kubeconfigLongDesc = cmdutil.LongDesc(`
    	Kubeconfig file utilities.
    	`)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/admission.go

    func (a *AdmissionOptions) AddFlags(fs *pflag.FlagSet) {
    	if a == nil {
    		return
    	}
    	fs.StringSliceVar(&a.PluginNames, "admission-control", a.PluginNames, ""+
    		"Admission is divided into two phases. "+
    		"In the first phase, only mutating admission plugins run. "+
    		"In the second phase, only validating admission plugins run. "+
    		"The names in the below list may represent a validating plugin, a mutating plugin, or both. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/init.go

    	// initialize the workflow runner with the list of phases
    	initRunner.AppendPhase(phases.NewPreflightPhase())
    	initRunner.AppendPhase(phases.NewCertsPhase())
    	initRunner.AppendPhase(phases.NewKubeConfigPhase())
    	initRunner.AppendPhase(phases.NewEtcdPhase())
    	initRunner.AppendPhase(phases.NewControlPlanePhase())
    	initRunner.AppendPhase(phases.NewKubeletStartPhase())
    	initRunner.AppendPhase(phases.NewWaitControlPlanePhase())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/config.go

    	PeerEndpointReconcileInterval time.Duration
    	// PeerEndpointLeaseReconciler updates the peer endpoint leases
    	PeerEndpointLeaseReconciler peerreconcilers.PeerEndpointLeaseReconciler
    	// PeerAdvertiseAddress is the IP for this kube-apiserver which is used by peer apiservers to route a request
    	// to this apiserver. This happens in cases where the peer is not able to serve the request due to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

         *
         * @param phase
         * @return
         */
        public Lifecycle get(String phase) {
            return getPhaseToLifecycleMap().get(phase);
        }
    
        /**
         * We use this to map all phases to the lifecycle that contains it. This is used so that a user can specify the
         * phase they want to execute and we can easily determine what lifecycle we need to run.
         *
         * @return A map of lifecycles, indexed on id
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    [[sec:decoupled_projects]]
    == Decoupled projects
    
    Gradle allows projects to access each other's configurations and tasks during the configuration and execution phases.
    While this flexibility empowers build authors, it limits Gradle's ability to perform optimizations such as <<#sec:parallel_execution,parallel project builds>> and <<#configuration_and_execution,configuration on demand>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top