Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,064 for NCases (0.07 sec)

  1. platforms/core-execution/workers/src/test/groovy/org/gradle/process/internal/worker/child/SerializableMockHelper.groovy

    import groovyjarjarasm.asm.ClassWriter
    import org.codehaus.groovy.ast.ClassNode
    import org.codehaus.groovy.control.CompilationUnit
    import org.codehaus.groovy.control.CompilationUnit.ClassgenCallback
    import org.codehaus.groovy.control.Phases
    import org.gradle.api.Action
    import org.gradle.internal.reflect.JavaReflectionUtil
    
    import java.util.concurrent.atomic.AtomicInteger
    
    class SerializableMockHelper {     static final Map ACTIONS = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.5K 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. maven-core/lifecycle-executor.txt

    We have a lifecycle mapping for the packaging of *jar* below. You see that for this packaging we have a *default* lifecycle and a list of phases where each phase is a comma separated list of goals to run and they are in the form groupId:artifactId:version.
    
    <configuration>
      <lifecycles>
        <lifecycle>
          <id>default</id>
          <phases>
            <process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. samples/ambient-argo/README.md

    In a phased model, there is generally a single version of Istio available in the cluster.  When a new version becomes available, the phases are moved one at a time to the new version, in order, until all phases have upgraded to the new model.  The phased model supports any number of phases based on the needs of your platform.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/scope_test.go

    	"testing"
    )
    
    func TestGetAffinity(t *testing.T) {
    	tcases := []struct {
    		name          string
    		containerName string
    		podUID        string
    		expected      TopologyHint
    	}{
    		{
    			name:          "case1",
    			containerName: "nginx",
    			podUID:        "0aafa4c4-38e8-11e9-bcb1-a4bf01040474",
    			expected:      TopologyHint{},
    		},
    	}
    	for _, tc := range tcases {
    		scope := scope{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 11:44:15 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/main_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 (
    	"testing"
    
    	pkiutiltesting "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil/testing"
    )
    
    func TestMain(m *testing.M) {
    	pkiutiltesting.RunWithPrivateKeyFixtureDirectory(m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 04 08:41:27 UTC 2021
    - 769 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ModelBlockTransformer.java

    import org.codehaus.groovy.ast.expr.MethodCallExpression;
    import org.codehaus.groovy.ast.stmt.Statement;
    import org.codehaus.groovy.control.CompilationFailedException;
    import org.codehaus.groovy.control.Phases;
    import org.codehaus.groovy.control.SourceUnit;
    import org.codehaus.groovy.syntax.SyntaxException;
    import org.gradle.groovy.scripts.internal.AbstractScriptTransformer;
    import org.gradle.groovy.scripts.internal.AstUtils;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/reset/unmount_linux_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 (
    	"testing"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    func TestFlagsToInt(t *testing.T) {
    
    	tests := []struct {
    		name           string
    		input          []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 10:58:44 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/upgrade/node/data.go

    import (
    	"io"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    // Data is the interface to use for kubeadm upgrade node phases.
    // The "nodeData" type from "cmd/upgrade/node.go" must satisfy this interface.
    type Data interface {
    	EtcdUpgrade() bool
    	RenewCerts() bool
    	DryRun() bool
    	Cfg() *kubeadmapi.UpgradeConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/common_test.go

    		t.Errorf("Unable to create test file %q: %v", fullPath, err)
    	}
    	defer f.Close()
    	if _, err = f.WriteString(testConfigToken); err != nil {
    		t.Errorf("Unable to write test file %q: %v", fullPath, err)
    	}
    	tcases := []struct {
    		name               string
    		newK8sVersion      string
    		dryRun             bool
    		flags              applyPlanFlags
    		expectedErr        string
    		expectedErrNonRoot string
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top