Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for name4 (0.11 sec)

  1. .idea/misc.xml

      </component>
      <component name="ExternalStorageConfigurationManager" enabled="true" />
      <component name="FrameworkDetectionExcludesConfiguration">
        <type id="web" />
      </component>
      <component name="NullableNotNullManager">
        <option name="myDefaultNullable" value="javax.annotation.Nullable" />
        <option name="myDefaultNotNull" value="javax.annotation.Nonnull" />
        <option name="myNullables">
          <value>
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Nov 06 06:19:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. build-logic-commons/settings.gradle.kts

    include("publishing")
    
    rootProject.name = "build-logic-commons"
    
    // Make sure all the build-logic is compiled for the right Java version
    gradle.lifecycle.beforeProject {
        pluginManager.withPlugin("java-base") {
            the<JavaPluginExtension>().toolchain {
                // if you change this java version please also consider changing .idea/misc.xml#project/component(@project-jdk-name}
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Nov 06 06:19:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/StageTriggers.kt

        os: Os?,
        dependencies: List<BaseGradleBuildType>,
        generateTriggers: Boolean = true,
    ) : BaseGradleBuildType(init = {
        id(stageTriggerId(model, stage, os))
        uuid = stageTriggerUuid(model, stage, os)
        name = stage.stageName.stageName + " (Trigger)" + (os?.asName()?.toCapitalized()?.let { "($it)" } ?: "")
        type = Type.COMPOSITE
    
        applyDefaultSettings()
    
        features {
            publishBuildStatusToGithub(model)
        }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Nov 06 08:08:13 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top