Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 176 for dialing (0.21 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      }
    
      if (VLOG_IS_ON(2) || DEBUG_DATA_DUMPER()->ShouldDump(
                               module_name.str(), kDebugGroupBridgePhase2)) {
        // Print the whole module after each pass which requires disabling
        // multi-threading as well.
        module_op.getContext()->disableMultithreading();
        tf2xla.enableIRPrinting(
            std::make_unique<::tensorflow::DataDumperLoggerConfig>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/cm/dra/plugin/noderesources.go

    			logger.V(5).Info("ResourceSlice delete", "slice", klog.KObj(slice))
    			c.queue.Add(slice.DriverName)
    		},
    	})
    	if err != nil {
    		logger.Error(err, "Registering event handler on the ResourceSlice informer failed, disabling resource monitoring")
    		return
    	}
    
    	// Start informer and wait for our cache to be populated.
    	c.wg.Add(1)
    	go func() {
    		defer c.wg.Done()
    		informer.Run(ctx.Done())
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top