Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 89 for no_oss (0.18 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinter.java

     */
    public class FailurePrinter {
    
        public static String printToString(Failure failure) {
            StringBuilder output = new StringBuilder();
            print(output, failure, FailurePrinterListener.NO_OP);
            return output.toString();
        }
    
        public static void print(Appendable output, Failure failure, FailurePrinterListener listener) {
            new Job(output, listener).print(failure);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. apache-maven/pom.xml

          <artifactId>org.eclipse.sisu.plexus</artifactId>
        </dependency>
        <dependency>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.inject</artifactId>
          <classifier>no_asm</classifier>
        </dependency>
        <dependency>
          <groupId>com.google.inject</groupId>
          <artifactId>guice</artifactId>
          <classifier>classes</classifier>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/operand.go

    	typ  Type
    	val  constant.Value
    	id   builtinId
    }
    
    // Pos returns the position of the expression corresponding to x.
    // If x is invalid the position is nopos.
    func (x *operand) Pos() syntax.Pos {
    	// x.expr may not be set if x is invalid
    	if x.expr == nil {
    		return nopos
    	}
    	return x.expr.Pos()
    }
    
    // Operand string formats
    // (not all "untyped" cases can appear due to the type system,
    // but they fall out naturally here)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ValidateStepTest.groovy

        def delegateResult = Mock(Result)
    
        def setup() {
            def validationContext = new DefaultWorkValidationContext(WorkValidationContext.TypeOriginInspector.NO_OP)
            context.getValidationContext() >> validationContext
        }
    
        def "executes work when there are no violations"() {
            boolean validated = false
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/go/types/assignments.go

    	} else if r > 0 {
    		at = rhs[r-1] // report at last value
    	}
    	err := check.newError(WrongResultCount)
    	err.addf(at, "%s return values", qualifier)
    	err.addf(noposn, "have %s", check.typesSummary(operandTypes(rhs), false))
    	err.addf(noposn, "want %s", check.typesSummary(varTypes(lhs), false))
    	err.report()
    }
    
    // initVars type-checks assignments of initialization expressions orig_rhs
    // to variables lhs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/process/internal/AbstractWorkerProcessIntegrationSpec.groovy

        @Shared
        DefaultServiceRegistry services = (DefaultServiceRegistry) ServiceRegistryBuilder.builder()
            .parent(NativeServicesTestFixture.getInstance())
            .provider(LoggingServiceRegistry.NO_OP)
            .provider(new GlobalScopeServices(false, AgentStatus.disabled()))
            .build()
        final MessagingServer server = services.get(MessagingServer.class)
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/go/types/generate_test.go

    		renameSelectorExprs(f, "syntax.Name->ast.Ident", "ident.Value->ident.Name", "ast.Pos->token.Pos") // must happen before renaming identifiers
    		renameIdents(f, "syntax->ast", "poser->positioner", "nopos->noposn")
    	},
    	"array.go":          nil,
    	"api_predicates.go": nil,
    	"basic.go":          nil,
    	"builtins.go": func(f *ast.File) {
    		renameImportPath(f, `"cmd/compile/internal/syntax"->"go/ast"`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. src/go/types/errors.go

    	case ast.Node:
    		pos := x.Pos()
    		return posSpan{pos, pos, x.End()}
    	case *operand:
    		if x.expr != nil {
    			pos := x.Pos()
    			return posSpan{pos, pos, x.expr.End()}
    		}
    		return posSpan{nopos, nopos, nopos}
    	default:
    		pos := at.Pos()
    		return posSpan{pos, pos, pos}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

                registration.add(VintageEnvironmentChangeTracker::class.java)
                registration.add(ProjectScopedScriptResolution::class.java, ProjectScopedScriptResolution.NO_OP)
                registration.addProvider(VintageBuildTreeProvider())
                registration.add(DefaultBuildTreeModelSideEffectExecutor::class.java)
            }
            if (modelParameters.isIntermediateModelCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ExternalModuleComponentResolverFactory.java

                    moduleComponentRepository = new LocalModuleComponentRepository<>(moduleComponentRepository);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top