Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 233 for run1 (0.19 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                }
            '''.stripIndent()
            run 'copy'
    
            when:
            run "copy"
    
            then:
            skipped(':copy')
    
            when:
            run "copy", "-Dcase-sensitive"
    
            then:
            executedAndNotSkipped(':copy')
    
            when:
            run "copy", "-Dcase-sensitive"
    
            then:
            skipped(':copy')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		"CSIDriver with capacity tracking":    makeCSIDriver(provisioner, true),
    		"CSIDriver without capacity tracking": makeCSIDriver(provisioner, false),
    	} {
    		t.Run(description, func(t *testing.T) {
    			for name, scenario := range scenarios {
    				t.Run(name, func(t *testing.T) { run(t, scenario, csiDriver) })
    			}
    		})
    	}
    }
    
    func TestFindPodVolumesWithProvisioning(t *testing.T) {
    	t.Parallel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		// runc uses the dot as the separator to verify whether the sysctl variable
    		// is correct in a separate namespace, so when using the slash as the sysctl
    		// variable separator, runc returns an error: "sysctl is not in a separate kernel namespace"
    		// and the podSandBox cannot be successfully created. Therefore, before calling runc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. tests/integration/security/authz_test.go

    					}
    				})
    		})
    }
    
    func TestAuthz_WorkloadSelector(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			// Verify that the workload-specific path (/policy-<ns>-<svc>) works only on the selected workload.
    			t.NewSubTestf("single workload").
    				Run(func(t framework.TestContext) {
    					from := apps.Ns1.A
    					fromMatch := match.ServiceName(from.NamespacedName())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    // Issues 17773 and 49281: don't follow a 3xx if the response doesn't
    // have a Location header.
    func TestClientRedirectNoLocation(t *testing.T) { run(t, testClientRedirectNoLocation) }
    func testClientRedirectNoLocation(t *testing.T, mode testMode) {
    	for _, code := range []int{301, 308} {
    		t.Run(fmt.Sprint(code), func(t *testing.T) {
    			setParallel(t)
    			cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    }
                }
            """
    
            when:
            run 'verifyExtension'
    
            then:
            operations.hasOperation("Executing generation of dependency accessors for libs")
    
            when: "no change in settings"
            run 'verifyExtension'
    
            then: "extension is not regenerated"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	}
    	if opts.bench {
    		// Run no tests.
    		run = append(run, "-run=^$")
    		// Run benchmarks briefly as a smoke test.
    		run = append(run, "-bench=.*", "-benchtime=.1s")
    	} else if opts.runTests != "" {
    		run = append(run, "-run="+opts.runTests)
    	}
    	if opts.cpu != "" {
    		run = append(run, "-cpu="+opts.cpu)
    	}
    	if t.json {
    		run = append(run, "-json")
    	}
    
    	if opts.gcflags != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
            """
    
            when:
            run("first", "second")
    
            then:
            output.count("service:") == 4
            outputContains("service: created with value = 10")
            outputContains("service: value is 11")
            outputContains("service: value is 12")
            outputContains("service: closed with value 12")
    
            when:
            run("first", "second")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                                }
                            }
                        }
                    }
                    failOnVersionConflict()
                }
    """
    
            when:
            run "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":depsub:") {
                    module("org.stuff:foo:2.0") {
                        edge("org.utils:api:1.5", "org.utils:api:1.5") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

    }
    """
    
            expect:
            runAndFail("tool:dependencies")
            failure.assertThatCause(containsString(CONFLICT_FOUND_HEADER_MESSAGE))
            failure.assertHasResolutions("Run with :tool:dependencyInsight --configuration runtimeClasspath " +
                "--dependency org:foo to get more insight on how to solve the conflict.",
                STACKTRACE_MESSAGE,
                INFO_DEBUG,
                SCAN,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top