Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for setOp (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    // from before any were created along with the full set of objects that were persisted
    func seedMultiLevelData(ctx context.Context, store storage.Interface) (string, []*example.Pod, error) {
    	// Setup storage with the following structure:
    	//  /
    	//   - first/
    	//  |         - bar
    	//  |
    	//   - second/
    	//  |         - bar
    	//  |         - foo
    	//  |         - [deleted] baz
    	//  |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    			str := err.Error()
    			str = strings.TrimPrefix(str, "\n")
    			if p.ImportPath != "" {
    				base.Errorf("# %s\n%s", p.ImportPath, str)
    			} else {
    				base.Errorf("%s", str)
    			}
    			fmt.Printf("FAIL\t%s [setup failed]\n", p.ImportPath)
    			continue
    		}
    		builds = append(builds, buildTest)
    		runs = append(runs, runTest)
    		prints = append(prints, printTest)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters_test.go

    			},
    			shouldError: false,
    		},
    	}
    	for _, testCase := range cases {
    		t.Run(testCase.name, func(t *testing.T) {
    			ctx := context.Background()
    			// testCase setup
    			existingNode := &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:        testKubeletHostname,
    					Annotations: testCase.existingAnnotations,
    				},
    				Spec: v1.NodeSpec{},
    				Status: v1.NodeStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		Description:    "Cannot add remote target endpoint since this server is in a cluster replication setup",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrReplicationDenyEditError: {
    		Code:           "XMinioReplicationDenyEdit",
    		Description:    "Cannot alter local replication config since this server is in a cluster replication setup",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketRemoteIdenticalToSource: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Annotations in the pods have higher precedence than the label selectors.
      // Order of evaluation: Pod Annotations → NeverInjectSelector → AlwaysInjectSelector → Default Policy.
      // See https://istio.io/docs/setup/kubernetes/additional-setup/sidecar-injection/#more-control-adding-exceptions
      repeated k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector neverInjectSelector = 11;
    
      // See NeverInjectSelector.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

    import org.gradle.integtests.fixtures.InspectsConfigurationReport
    
    class OutgoingVariantsReportTaskIntegrationTest extends AbstractIntegrationSpec implements InspectsConfigurationReport {
        def setup() {
            settingsFile << """
                rootProject.name = "myLib"
            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

    class DependencySubstitutionRulesIntegrationTest extends AbstractIntegrationSpec {
        def resolve = new ResolveTestFixture(buildFile, "conf").expectDefaultConfiguration("runtime")
    
        def setup() {
            settingsFile << "rootProject.name='depsub'\n"
            resolve.prepare()
            resolve.addDefaultVariantDerivationStrategy()
        }
    
        void "forces multiple modules by rule"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        @Rule
        HttpServer httpServer = new HttpServer()
        def remoteRepo = new MavenHttpRepository(httpServer, mavenRepo)
    
        def setup() {
            // So that dependency resolution results from previous executions do not interfere
            requireOwnGradleUserHomeDir()
        }
    
        def setupBuildWithEachDependencyType() {
            httpServer.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

        static final String TRANSFORM_STEP = NodeIdentity.NodeType.TRANSFORM_STEP.name()
    
        def buildOperations = new BuildOperationsFixture(executer, testDirectoryProvider)
    
        def setup() {
            requireOwnGradleUserHomeDir("Artifact transforms should run every time and not be shared between tests")
    
            // group name is included in the capabilities of components, which are part of the transform identity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    	splice **Value  // place to store reference to the generating instruction
    	pos    src.XPos // source position of use of this location
    }
    
    // setup initializes the edge state for shuffling.
    func (e *edgeState) setup(idx int, srcReg []endReg, dstReg []startReg, stacklive []ID) {
    	if e.s.f.pass.debug > regDebug {
    		fmt.Printf("edge %s->%s\n", e.p, e.b)
    	}
    
    	// Clear state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top