Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for setLines (0.34 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * profiles from the project's POM and all its parent POMs as well as from external sources like the
         * {@code settings.xml}. The profile identifiers are grouped by the identifier of their source, e.g.
         * {@code <groupId>:<artifactId>:<version>} for a POM profile or {@code external} for profiles from the
         * {@code settings.xml}.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. configure.py

          'w') as f:
        f.write('export PYTHON_BIN_PATH="{}"'.format(python_bin_path))
    
    
    def reset_tf_configure_bazelrc():
      """Reset file that contains customized config settings."""
      open(_TF_BAZELRC, 'w').close()
    
    
    def cleanup_makefile():
      """Delete any leftover BUILD files from the Makefile build.
    
      These files could interfere with Bazel parsing.
      """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *
     * Use `new OkHttpClient()` to create a shared instance with the default settings:
     *
     * ```java
     * // The singleton HTTP client.
     * public final OkHttpClient client = new OkHttpClient();
     * ```
     *
     * Or use `new OkHttpClient.Builder()` to create a shared instance with custom settings:
     *
     * ```java
     * // The singleton HTTP client.
     * public final OkHttpClient client = new OkHttpClient.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. common/scripts/metallb-native.yaml

          type: integer
        - jsonPath: .spec.detectMultiplier
          name: Multiplier
          type: integer
        name: v1beta1
        schema:
          openAPIV3Schema:
            description: BFDProfile represents the settings of the bfd session that can
              be optionally associated with a BGP session.
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// - if the new state is "partialDisruption" we call a user defined function that returns a new limiter to use,
    	// - if the new state is "normal" we resume normal operation (go back to default limiter settings),
    	// - if new state is "fullDisruption" we restore normal eviction rate,
    	//   - unless all zones in the cluster are in "fullDisruption" - in that case we stop all evictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            }
        }
    
        void "'#gradleConfiguration' dependencies end up in '#ivyConfiguration' configuration with '#plugin' plugin"() {
            given:
            file("settings.gradle") << '''
                rootProject.name = 'publishTest'
                include "b"
            '''
            buildFile << """
                plugins {
                    id("$plugin")
                    id("ivy-publish")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  7. tensorflow/BUILD

            ":with_tpu_support_flag",
        ],
        visibility = ["//visibility:public"],
    )
    
    # Specifies via a config setting if this is a mobile build or not, makes
    # it easier to combine settings later.
    selects.config_setting_group(
        name = "mobile",
        match_any = [
            ":android",
            ":chromiumos",
            # TODO(jakeharmon8): Move all platform configs to TSL with fuchsia (non-blocking)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        }
    
        def "buildSrc output may require transform output"() {
            withColorVariants(mavenRepo.module("test", "test", "12")).publish()
    
            createDirs("buildSrc/producer")
            file("buildSrc/settings.gradle") << """
                include 'producer'
            """
            def buildSrcBuildFile = file("buildSrc/build.gradle")
            setupBuildWithColorTransformImplementation(buildSrcBuildFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/27099")
        def "can apply service plugin in precompiled script plugins"() {
            given:
            createDir("plugins") {
                file("settings.gradle.kts") << """
                    include("service-plugin")
                    include("convention-kotlin-plugin")
                    include("convention-groovy-plugin")
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

        }
    
        private Map<String, String> populateProperties() {
            HashMap<String, String> properties = new HashMap<>();
            String baseDir = new File(".").getAbsolutePath();
            properties.put("ivy.default.settings.dir", baseDir);
            properties.put("ivy.basedir", baseDir);
    
            Set<String> propertyNames = CollectionUtils.collect(System.getProperties().entrySet(), entry -> entry.getKey().toString());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top