Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 131 for meaningful (0.22 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

         */
        @Nullable
        Throwable getException();
    
        /**
         * Returns the stack trace that can be reported to the user about where the problem occurred.
         *
         * <p>Not every problem has a meaningful stack, even when the problem has an associated exception. Returns an empty list in this case.</p>
         */
        List<StackTraceElement> getStack();
    
        /**
         * Returns the location of the problem, if known.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeNativeProjectIntegrationTest.groovy

                result.assertOutputContains("'${target.name}' component in project ':' is not buildable.");
            }
        }
    
        @Requires(UnitTestPreconditions.HasXCode)
        @ToBeFixedForConfigurationCache
        def "returns meaningful errors from xcode when component product is unbuildable due to operating system"() {
            useXcodebuildTool()
    
            given:
            makeSingleProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

            outputContains("'main' component in project ':' is not buildable.");
        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        @ToBeFixedForConfigurationCache
        def "returns meaningful errors from visual studio when component product is unbuildable due to operating system"() {
            assumeFalse(toolChain.meets(WINDOWS_GCC))
            useMsbuildTool()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/TestLauncherCrossVersionSpec.groovy

                    @org.junit.Test public void bar() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                }
            """
        }
    
        def "fails with meaningful error when no tests declared"() {
            when:
            launchTests { TestLauncher launcher ->
                launcher.withTaskAndTestClasses(':test',[])
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

         */
        public val variableReassignments: List<VariableReassignment>
    ) {
        /**
         * Represents a default expression (generally, a last given statement if it has a meaningful result type).
         * Expressions that always return [Nothing], such as `return`, `break`, `continue` or `throw`, cannot be default expressions.
         */
        public class DefaultExpressionInfo(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

     * When running with the daemon, success is dependent on DaemonConnector forking the daemon process with the right classpath.
     *
     * This test is not meaningful when running the embedded integration test mode, so we ignore it in that case.
     */
    class SystemClassLoaderTest extends AbstractIntegrationSpec {
    
        static heading = "systemClassLoader info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     *
     * - Should be practically immutable
     * - Should only expose primitive(ish) JDK types, or other structured types only exposing JDK types
     * - Collection like structures should have deterministic order - either sorted, or meaningful
     * - Should expose either java.util.List or java.util.Map over specialised collection types
     *
     * Implementations can assume that their getters will be called at-most-once.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/script/mod_outside.txt

    # 'go list -m -versions' should succeed even without an explicit version.
    go list -m -versions example.com/version
    stdout 'v1.0.0\s+v1.0.1\s+v1.1.0'
    
    # 'go list -m all' should fail. "all" is not meaningful outside of a module.
    ! go list -m all
    stderr 'go: cannot match "all": go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    # 'go list -m <mods> all' should also fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top