Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 191 for dialing (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    [[sub:disable_auto_provision]]
    === Disabling auto provisioning
    
    In order to disable auto-provisioning, you can use the `org.gradle.java.installations.auto-download` Gradle property:
    
    * Either start gradle using `-Porg.gradle.java.installations.auto-download=false`
    * Or put `org.gradle.java.installations.auto-download=false` into a `gradle.properties` file.
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. src/text/template/funcs.go

    		return v.IsNil()
    	}
    	return false
    }
    
    // canCompare reports whether v1 and v2 are both the same kind, or one is nil.
    // Called only when dealing with nillable types, or there's about to be an error.
    func canCompare(v1, v2 reflect.Value) bool {
    	k1 := v1.Kind()
    	k2 := v2.Kind()
    	if k1 == k2 {
    		return true
    	}
    	// We know the type can be compared to nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/offline-mode.apt

      reached or started.
    
      All of these operations will produce their own unique errors in the absence of
      a coordinated offline strategy. In addition, efforts to unite these failing
      behaviors behind a consistent user interface is much, much more difficult if
      the system can't tell whether it has access to the network required by these
      operations.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            when:
            succeeds('customTask')
    
            then:
            result.assertTasksExecutedInOrder(':climbTask', ':customTask')
        }
    
        def "a build failure occurs when depending on a rule task with failing configuration"() {
            given:
            buildFile << """
            ${ruleBasedTasks()}
    
            class Rules extends RuleSource {
                @Mutate
                void addTasks(ModelMap<Task> tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            1 * processor.completed(2, { it.resultType == null })
            0 * processor._
        }
    
        @Issue("GRADLE-3112")
        def "has no errors when dealing with an empty suite"() {
            setup:
            classProcessor = createProcessor([] as Set, [] as Set, ["*AnEmptyTestSuite"] as Set, [] as Set, [] as Set)
    
            //Run tests in AnEmptyTestSuite (e.g. no tests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

          }
        };
      }
    
      /**
       * Shuts down the given executor service gradually, first disabling new submissions and later, if
       * necessary, cancelling remaining tasks.
       *
       * <p>The method takes the following steps:
       *
       * <ol>
       *   <li>calls {@link ExecutorService#shutdown()}, disabling acceptance of new submitted tasks.
       *   <li>awaits executor service termination for half of the specified timeout.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/a.out.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ppc64
    
    import "cmd/internal/obj"
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p ppc64
    
    /*
     * powerpc 64
     */
    const (
    	NSNAME = 8
    	NSYM   = 50
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    [[sec:enabling_and_disabling_tasks]]
    === 3. Enabling and Disabling tasks
    
    Every task has an `enabled` flag, which defaults to `true`.
    Setting it to `false` prevents executing the task's actions.
    
    A disabled task will be labeled `SKIPPED`:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/main.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    	"bufio"
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/quoted"
    	"cmd/internal/sys"
    	"cmd/internal/telemetry"
    	"cmd/link/internal/benchmark"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    
    [[sec:complete_rewrite_of_eclipse_files]]
    ==== Disabling merging with a complete rewrite
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top