Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for NCases (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

        public Lifecycle(String id, List<String> phases, Map<String, LifecyclePhase> defaultPhases) {
            this.id = id;
            this.phases = phases;
            this.defaultPhases = defaultPhases;
        }
    
        public Lifecycle(org.apache.maven.api.Lifecycle lifecycle) {
            this.lifecycle = lifecycle;
            this.id = lifecycle.id();
            this.phases = lifecycle.phases().stream()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    limitations under the License.
    */
    
    package phases
    
    import (
    	"fmt"
    	"io"
    	"text/template"
    	"time"
    
    	"github.com/lithammer/dedent"
    	"github.com/pkg/errors"
    
    	clientset "k8s.io/client-go/kubernetes"
    	kubeletconfig "k8s.io/kubelet/config/v1beta1"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	"k8s.io/kubernetes/cmd/kubeadm/app/componentconfigs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    */
    
    package node
    
    import (
    	"fmt"
    
    	"github.com/pkg/errors"
    
    	utilsexec "k8s.io/utils/exec"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	"k8s.io/kubernetes/cmd/kubeadm/app/preflight"
    )
    
    // NewPreflightPhase creates a kubeadm workflow phase that implements preflight checks for a new node join
    func NewPreflightPhase() workflow.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    limitations under the License.
    */
    
    package phases
    
    import (
    	"fmt"
    
    	"github.com/pkg/errors"
    	"github.com/spf13/cobra"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	etcdphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/etcd"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. cni/pkg/log/uds_test.go

    		want := map[string]any{
    			"level": cases[i].level,
    			"msg":   cases[i].msg,
    		}
    		if k := cases[i].key; k != nil {
    			want["key"] = *k
    		}
    		assert.Equal(t, want, parsedLog)
    		i++
    	}
    }
    
    func TestParseCniLog(t *testing.T) {
    	wantT := &time.Time{}
    	assert.NoError(t, wantT.UnmarshalText([]byte("2020-01-01T00:00:00.356374Z")))
    	cases := []struct {
    		name string
    		in   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

            withValidityAssertion { analysisSession.expressionInfoProvider.getReturnExpressionTargetSymbol(this) }
    
        /**
         * Returns cases missing from the branches of [KtWhenExpression].
         *
         * The missing cases of the when-expression in the following example are Direction.WEST and Direction.EAST:
         *
         * enum class Direction {
         *   NORTH, SOUTH, WEST, EAST
         * }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractScopeTestBase.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.impl.base.test.cases.components.scopeProvider
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.symbols.AbstractSymbolByFqNameTest
    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.symbols.SymbolsData
    import org.jetbrains.kotlin.analysis.api.scopes.KaScope
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top