Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for meaningful (0.22 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":test")
            events.tests.size() == (supportsEfficientClassFiltering() ? 10 : 14)
        }
    
        def "fails with meaningful error when requested tests not found"() {
            given:
            collectDescriptorsFromBuild()
            and:
            testClassRemoved()
            when:
            launchTests { TestLauncher launcher ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. hack/make-rules/test.sh

    # coverage mode.
    KUBE_COVERPROCS=${KUBE_COVERPROCS:-4}
    # use KUBE_RACE="" to disable the race detector
    # this is defaulted to "-race" in make test as well
    # NOTE: DO NOT ADD A COLON HERE. KUBE_RACE="" is meaningful!
    KUBE_RACE=${KUBE_RACE-"-race"}
    # Set to the goveralls binary path to report coverage results to Coveralls.io.
    KUBE_GOVERALLS_BIN=${KUBE_GOVERALLS_BIN:-}
    # once we have multiple group supports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/kubelet/config/config.go

    		return false
    	}
    	return true
    }
    
    // checkAndUpdatePod updates existing, and:
    //   - if ref makes a meaningful change, returns needUpdate=true
    //   - if ref makes a meaningful change, and this change is graceful deletion, returns needGracefulDelete=true
    //   - if ref makes no meaningful change, but changes the pod status, returns needReconcile=true
    //   - else return all false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

                testLauncher.run()
            };
            then:
            def e = thrown(ListenerFailedException)
            e.cause.message == "failing progress listener"
        }
    
        def "fails with meaningful error when no tests declared"() {
            when:
            launchTests([])
    
            then:
            def e = thrown(TestExecutionException)
            e.message == "No test declared for execution."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"and size is a number. This option is only meaningful for resources built into the apiserver, "+
    		"not ones defined by CRDs or aggregated from external servers, and is only consulted if the "+
    		"watch-cache is enabled. The only meaningful size setting to supply here is zero, which means to "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    	).Get()
    
    	EnableDistributionTracking = env.Register(
    		"PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING",
    		false,
    		"If enabled, Pilot will assign meaningful nonces to each Envoy configuration message, and allow "+
    			"users to interrogate which envoy has which config from the debug interface.",
    	).Get()
    
    	DistributionHistoryRetention = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/runtime/runtime.go

    //
    // Note: Clocks are hard. Using this as an actual conversion rate for timestamps is ill-advised
    // and should be avoided when possible. Use only for durations, where a tiny error term isn't going
    // to make a meaningful difference in even a 1ms duration. If an accurate timestamp is needed,
    // use nanotime instead. (The entire Windows platform is a broad exception to this rule, where nanotime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    // limitations under the License.
    
    [[organizing_gradle_projects]]
    = Organizing Gradle Projects
    
    Source code and build logic of every software project should be organized in a meaningful way.
    This page lays out the best practices that lead to readable, maintainable projects.
    The following sections also touch on common problems and how to avoid them.
    
    [[sec:separate_language_source_files]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/covdata/metamerge.go

    	// Open output file. The file naming scheme is intended to mimic
    	// that used when running a coverage-instrumented binary, for
    	// consistency (however the process ID is not meaningful here, so
    	// use a value of zero).
    	var dummyPID int
    	fn := fmt.Sprintf(coverage.CounterFileTempl, coverage.CounterFilePref, metaHash, dummyPID, time.Now().UnixNano())
    	fpath := filepath.Join(outdir, fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

            @Override
            public int getModifiers() {
                if (original != null) {
                    return original.getModifiers();
                }
                // TODO is there even a way to return meaningful modifiers when we are intercepting calls to a missing method?
                return 0;
            }
    
            @Override
            public String getName() {
                if (original != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top