Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for meaningful (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    //   - Hostname is the hostname of the local machine (from uname -n).
    //     However, some components allow the user to pass in a --hostname-override flag,
    //     which will override this in most places. In the absence of anything more meaningful,
    //     kubelet will use Hostname as the Node.Name when it creates the Node.
    //
    // * The cloudproviders have the own names: GCE has InstanceName, AWS has InstanceId.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTestLauncherCrossVersionSpec.groovy

                id("java")
            }
            ${mavenCentralRepository()}
            dependencies {
                testImplementation("junit:junit:4.13.1")
            }
            """
        }
    
        def "fails with meaningful error when no tests declared from included build"() {
            when:
            launchTests { TestLauncher launcher ->
                launcher.withTaskAndTestClasses(':included-build:test', [])
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/lockedfile/lockedfile_plan9.go

    	"file is locked",
    	"exclusive lock",
    	"exclusive use file already open",
    }
    
    // Even though plan9 doesn't support the Lock/RLock/Unlock functions to
    // manipulate already-open files, IsLocked is still meaningful: os.OpenFile
    // itself may return errors that indicate that a file with the ModeExclusive bit
    // set is already open.
    func isLocked(err error) bool {
    	s := err.Error()
    
    	for _, frag := range lockedErrStrings {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/serviceaccount/openidmetadata.go

    // openIDMetadata provides a minimal subset of OIDC provider metadata:
    // https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
    type openIDMetadata struct {
    	Issuer string `json:"issuer"` // REQUIRED in OIDC; meaningful to relying parties.
    	// TODO(mtaufen): Since our goal is compatibility for relying parties that
    	// need to validate ID tokens, but do not need to initiate login flows,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
Back to top