Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 339 for scouse (0.15 sec)

  1. android/guava/src/com/google/common/net/InetAddresses.java

        }
    
        // Parse the address, and make sure the length/version is correct.
        Scope scope = parseScope ? new Scope() : null;
        byte[] addr = ipStringToBytes(ipString, scope);
        if (addr == null || addr.length != expectBytes) {
          return null;
        }
    
        return bytesToInetAddress(addr, (scope != null) ? scope.scope : null);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository.java

                    cause -> new ModuleVersionResolveException(moduleComponentIdentifier, () -> buildDisabledRepositoryErrorMessage(repositoryName), cause),
                    cause -> new ModuleVersionResolveException(moduleComponentIdentifier, cause)
                );
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

            normaliseLineSeparators(e.cause.causes[0].cause.message) == "Execution failed for task ':secondTest'."
            normaliseLineSeparators(e.cause.causes[0].cause.cause.message).startsWith "There were failing tests. See the report at:"
            normaliseLineSeparators(e.cause.causes[1].cause.message) == "Execution failed for task ':test'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

       {info}> {normal}ultimate cause
    {info}> {normal}There is 1 more failure with an identical cause.
    
    * Try:
    $STACKTRACE
    $INFO_OR_DEBUG
    $SCAN
    $GET_HELP
    """
        }
    
        def "multi-cause exceptions have branches with identical root causes and additional intermediate failures summarized properly"() {
            def ultimateCause = new RuntimeException("ultimate cause")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/instantiate.go

    	if Ti.typeSet().IsEmpty() {
    		if cause != nil {
    			*cause = check.sprintf("cannot %s %s (empty type set)", verb, T)
    		}
    		return false
    	}
    
    	// V must implement T's methods, if any.
    	if m, _ := check.missingMethod(V, T, true, Identical, cause); m != nil /* !Implements(V, T) */ {
    		if cause != nil {
    			*cause = check.sprintf("%s does not %s %s %s", V, verb, T, *cause)
    		}
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

    import org.jetbrains.kotlin.analysis.api.resolution.calls
    import org.jetbrains.kotlin.analysis.api.resolution.symbol
    import org.jetbrains.kotlin.analysis.api.scopes.KaScope
    import org.jetbrains.kotlin.analysis.api.signatures.KaCallableSignature
    import org.jetbrains.kotlin.analysis.api.signatures.KaFunctionLikeSignature
    import org.jetbrains.kotlin.analysis.api.signatures.KaVariableLikeSignature
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

    import org.gradle.internal.service.ServiceRegistryBuilder;
    import org.gradle.internal.service.scopes.WorkerSharedBuildSessionScopeServices;
    import org.gradle.internal.service.scopes.WorkerSharedGlobalScopeServices;
    import org.gradle.internal.service.scopes.WorkerSharedProjectScopeServices;
    import org.gradle.internal.service.scopes.WorkerSharedUserHomeScopeServices;
    import org.gradle.internal.state.ManagedFactoryRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. src/go/types/instantiate.go

    	if Ti.typeSet().IsEmpty() {
    		if cause != nil {
    			*cause = check.sprintf("cannot %s %s (empty type set)", verb, T)
    		}
    		return false
    	}
    
    	// V must implement T's methods, if any.
    	if m, _ := check.missingMethod(V, T, true, Identical, cause); m != nil /* !Implements(V, T) */ {
    		if cause != nil {
    			*cause = check.sprintf("%s does not %s %s %s", V, verb, T, *cause)
    		}
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

            testLogging.getShowCauses() >> true
            testLogging.getShowStackTraces() >> true
            testLogging.getStackTraceFilters() >> EnumSet.noneOf(TestStackTraceFilter)
    
            def cause = new RuntimeException("oops")
            cause.stackTrace = createCauseTrace()
            def exception = new Exception("ouch", cause)
            exception.stackTrace = createStackTrace()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

    import org.gradle.internal.InternalTransformer;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.reflect.GroovyMethods;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.model.InvalidModelRuleDeclarationException;
    import org.gradle.model.RuleInput;
    import org.gradle.model.RuleSource;
    import org.gradle.model.RuleTarget;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top