Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,665 for mprotect (1.45 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

                return false;
            }
            Project project = (Project) o;
            return Objects.equal(jdk, project.jdk)
                && Objects.equal(modulePaths, project.modulePaths)
                && Objects.equal(projectLibraries, project.projectLibraries)
                && Objects.equal(wildcards, project.wildcards)
                && Objects.equal(vcs, project.vcs);
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/project.go

    	idMap := make(map[common.QuotaID]bool)
    	for _, project := range list.projects {
    		if project.data == path {
    			if id != common.BadQuotaID && id != project.id {
    				return common.BadQuotaID, false, fmt.Errorf("attempt to reassign project ID for %s", path)
    			}
    			// Trying to reassign a directory to the project it's
    			// already in.  Maybe this should be an error, but for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

                return false;
            }
            Project project = (Project) o;
            return Objects.equal(buildCommands, project.buildCommands)
                && Objects.equal(comment, project.comment)
                && Objects.equal(linkedResources, project.linkedResources)
                && Objects.equal(resourceFilters, project.resourceFilters)
                && Objects.equal(name, project.name)
                && Objects.equal(natures, project.natures)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-create-project.png

    teamcity-create-project.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  5. docs/ru/docs/project-generation.md

    Vladislav Kramorenko <******@****.***> 1681408847 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 13 18:00:47 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    +
    If you are developing custom Gradle plugins for your project, `buildSrc` is a convenient place to house the plugin code.
    This makes the plugins easily accessible within your project.
    
    The `buildSrc` directory is treated as an <<composite_builds.adoc#composite_build_intro,included build>>.
    
    For multi-project builds, there can be only one `buildSrc` directory, which must be in the root project directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginTemplatesTest.kt

                verifyNoMoreInteractions()
            }
        }
    
        private
        fun KStubbing<Project>.onProject(path: String, project: Project) {
            on { project(eq(path), any<Action<Project>>()) } doAnswer {
                it.executeActionArgument(1, project)
                project
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

    + tasks
          | Type:   \torg.gradle.model.ModelMap<org.gradle.api.Task>
          | Creator: \tProject.<init>.tasks()
        + buildEnvironment
              | Type:   \torg.gradle.api.tasks.diagnostics.BuildEnvironmentReportTask
              | Value:  \ttask ':buildEnvironment\'
              | Creator: \tProject.<init>.tasks.buildEnvironment()
              | Rules:
                 ⤷ copyToTaskContainer
        + components
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    The following example demonstrates publishing with a multi-project build.
    Each project publishes a Java component configured to also build and publish Javadoc and source code artifacts.
    The descriptor file is customized to include the project description for each project.
    
    .Publishing a Java module
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/read.go

    		return pkg, nil
    	})
    }
    
    var errCorrupt = errors.New("corrupt index")
    
    // protect marks the start of a large section of code that accesses the index.
    // It should be used as:
    //
    //	defer unprotect(protect, &err)
    //
    // It should not be used for trivial accesses which would be
    // dwarfed by the overhead of the defer.
    func protect() bool {
    	return debug.SetPanicOnFault(true)
    }
    
    var isTest = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top