Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,509 for setStrings (0.3 sec)

  1. platforms/documentation/docs/src/snippets/java/toolchain-management/groovy/settings.gradle

        }
    }
    // end::toolchain-management[]
    
    rootProject.name = 'toolchain-management'
    
    abstract class MadeUpPlugin implements Plugin<Settings> {
    
        @Inject
        protected abstract JavaToolchainResolverRegistry getToolchainResolverRegistry();
    
        void apply(Settings settings) {
            settings.getPlugins().apply("jvm-toolchain-management")
    
            JavaToolchainResolverRegistry registry = getToolchainResolverRegistry()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

     * limitations under the License.
     */
    package okhttp3.internal.http2
    
    /**
     * Settings describe characteristics of the sending peer, which are used by the receiving peer.
     * Settings are [connection][Http2Connection] scoped.
     */
    class Settings {
      /** Bitfield of which flags that values. */
      private var set: Int = 0
    
      /** Flag values. */
      private val values = IntArray(COUNT)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/environment/kube/settings.go

    }
    
    func (s *Settings) clone() *Settings {
    	c := *s
    	return &c
    }
    
    func (s *Settings) clusterConfigs() ([]cluster.Config, error) {
    	if len(clusterConfigs) == 0 {
    		// not loaded from file file, build directly from provided kubeconfigs and topology flag maps
    		return s.clusterConfigsFromFlags()
    	}
    
    	return s.clusterConfigsFromFile()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/sharedResources/maven_home/m2_home/conf/settings.xml

    <settings>
        <profiles>
            <profile>
              <id>testprofile</id>
              <properties>
                <junit-version>4.13</junit-version>
                <compiler-version>3.7.0</compiler-version>
              </properties>
            </profile>
        </profiles>
        <activeProfiles>
            <activeProfile>testprofile</activeProfile>
        </activeProfiles>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 366 bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/settings.gradle

    include 'project1', 'project2'
    
    println 'settings quiet out'
    logging.captureStandardOutput(LogLevel.INFO)
    println 'settings info out'
    
    logger.lifecycle('settings lifecycle log')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 211 bytes
    - Viewed (0)
  6. maven-embedder/src/examples/simple-project/settings.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <settings>
      <pluginGroups>
        <pluginGroup>org.codehaus.tycho</pluginGroup>
        <pluginGroup>org.sonatype.pwt</pluginGroup>
      </pluginGroups>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 945 bytes
    - Viewed (0)
  7. maven-core/src/test/resources-settings/repositories/settings.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <settings>
      <profiles>
        <profile>
          <id>maven-core-it-repo</id>
          <repositories>
            <repository>
              <id>maven-core-it-0</id>
              <url>@baseurl@/repo-0</url>
              <releases>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 21 23:11:40 UTC 2009
    - 1.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/kotlin/settings.gradle.kts

    rootProject.name = "component-metadata-rules"
    
    // tag::rule-in-settings[]
    dependencyResolutionManagement {
        components {
            withModule<GuavaRule>("com.google.guava:guava")
        }
    }
    // end::rule-in-settings[]
    
    // tag::prefer-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_SETTINGS
    }
    // end::prefer-settings[]
    
    // tag::enforce-settings[]
    dependencyResolutionManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/toolchain-management/kotlin/settings.gradle.kts

        }
    }
    // end::toolchain-management[]
    
    rootProject.name = "toolchain-management"
    
    abstract class MadeUpPlugin: Plugin<Settings> {
    
        @get:Inject
        protected abstract val toolchainResolverRegistry: JavaToolchainResolverRegistry
    
        override fun apply(settings: Settings) {
            settings.plugins.apply("jvm-toolchain-management")
    
            val registry: JavaToolchainResolverRegistry = toolchainResolverRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/services/kotlin/settings.gradle.kts

    rootProject.name = "services"
    
    // tag::build-layout[]
    println("Root Directory: ${settings.layout.rootDirectory}")
    println("Settings Directory: ${settings.layout.settingsDirectory}")
    // end::build-layout[]
    
    // tag::build-layout-inject[]
    abstract class MyBuildLayoutPlugin @Inject constructor(private val buildLayout: BuildLayout) : Plugin<Settings> {
        override fun apply(settings: Settings) {
            println(buildLayout.rootDirectory)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 559 bytes
    - Viewed (0)
Back to top