Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 317 for mprotect (2.15 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                    }
                }
                project(":child2") {
                    dependencies {
                        implementation project(":child1");
                    }
                    eclipse {
                        classpath.file.whenMerged { cp ->
                            def dep = entries.find { it.path.endsWith('child1') }
                            def sourceJar = this.project(":child1").tasks.getByName("sourceJar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

        }
    
        def "includes execution time of project evaluation listener callbacks"() {
            given:
            def sleepMillis = 250
            file("build.gradle") << """
                apply plugin: MyPlugin
                class MyPlugin implements Plugin<Project> {
                    void apply(Project project) {
                        project.afterEvaluate {
                            ${simulateWork(sleepMillis)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            jdkHome: Path? = null,
        ) {
            val project = environment.project
    
            KotlinCoreEnvironment.registerProjectExtensionPoints(project.extensionArea)
    
            project.registerService(SmartTypePointerManager::class.java, SmartTypePointerManagerImpl::class.java)
            project.registerService(SmartPointerManager::class.java, SmartPointerManagerImpl::class.java)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

        ) : ProjectEvaluationListener {
            override fun beforeEvaluate(project: Project) {
                delegate.beforeEvaluate(crossProjectModelAccess.access(referrerProject, project as ProjectInternal))
            }
    
            override fun afterEvaluate(project: Project, state: ProjectState) {
                delegate.afterEvaluate(crossProjectModelAccess.access(referrerProject, project as ProjectInternal), state)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. pom.xml

            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-core</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-api-impl</artifactId>
            <version>${project.version}</version>
          </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                    val project = readNonNull<CachedProjectState>()
                    if (project is ProjectWithWork) {
                        if (project.path == Path.ROOT) {
                            build.registerRootProject(rootProjectName, project.projectDir, project.buildDir)
                        } else {
                            build.registerProject(project.path, project.projectDir, project.buildDir)
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. pom.xml

    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_config.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_crawler.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_suggest.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_thumbnail.properties</path>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

        }
    
        @Nonnull
        static DependencyResolverRequest build(Session session, RequestType requestType, Project project) {
            return build(session, requestType, project, PathScope.MAIN_RUNTIME);
        }
    
        @Nonnull
        static DependencyResolverRequest build(Session session, RequestType requestType, Project project, PathScope scope) {
            return new DependencyResolverRequestBuilder()
                    .session(session)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributeInterfaces.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildModelControllerServices.kt

    import org.gradle.api.internal.GradleInternal
    import org.gradle.api.internal.project.CrossProjectModelAccess
    import org.gradle.api.internal.project.DefaultCrossProjectModelAccess
    import org.gradle.api.internal.project.DefaultDynamicLookupRoutine
    import org.gradle.api.internal.project.DynamicLookupRoutine
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.api.internal.project.ProjectRegistry
    import org.gradle.configuration.ProjectsPreparer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top