Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 944 for avoided (0.28 sec)

  1. operator/pkg/util/progress/progress.go

    	defer p.mu.Unlock()
    	p.components[component] = ml
    	return ml
    }
    
    func (p *Log) SetMessage(status string, finish bool) {
    	// if we are not a terminal and there is no change, do not write
    	// This avoids redundant lines
    	if !p.bar.GetBool(pb.Terminal) && status == p.template {
    		return
    	}
    	p.template = status
    	p.bar.SetTemplateString(p.template)
    	if finish {
    		p.bar.Finish()
    	}
    	p.bar.Write()
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/session/KtAnalysisSessionProvider.kt

         */
        @KaAnalysisApiInternals
        public abstract fun afterLeavingAnalysis(session: KaSession, useSiteElement: KtElement)
    
        /**
         * [afterLeavingAnalysis] hooks into analysis *after* [analyze]'s action has been executed.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ConsoleConfigureAction.java

            if (consoleMetaData.isStdOut() && consoleMetaData.isStdErr()) {
                // Redirect stderr to stdout when both stdout and stderr are attached to a console. Assume that they are attached to the same console
                // This avoids interleaving problems when stdout and stderr end up at the same location
                Console console = consoleFor(stdout, consoleMetaData, renderer.getColourMap());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/misc/groovy/build.gradle

    tasks.register('ensureDirectory') {
        // Store target directory into a variable to avoid project reference in the configuration cache
        def directory = file("images")
    
        doLast {
            Files.createDirectories(directory.toPath())
        }
    }
    // end::mkdir-example[]
    
    // tag::move-example[]
    tasks.register('moveReports') {
        // Store the build directory into a variable to avoid project reference in the configuration cache
        def dir = buildDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 932 bytes
    - Viewed (0)
  5. src/internal/itoa/itoa.go

    // license that can be found in the LICENSE file.
    
    // Simple conversions to avoid depending on strconv.
    
    package itoa
    
    // Itoa converts val to a decimal string.
    func Itoa(val int) string {
    	if val < 0 {
    		return "-" + Uitoa(uint(-val))
    	}
    	return Uitoa(uint(val))
    }
    
    // Uitoa converts val to a decimal string.
    func Uitoa(val uint) string {
    	if val == 0 { // avoid string allocation
    		return "0"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 02:53:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_xla_weight_only.mlir

        func.return %mul : tensor<*xf32>
      }
    
      func.func private @internal_conv3d_fn(
                             %input : tensor<*xf32>, %filter : tensor<*xi8>) -> tensor<*xf32> {
    
       // Use identity op to avoid the filter being constant-folded.
        %identity = "tf.Identity"(%filter) : (tensor<*xi8>) -> tensor<*xi8>
        %2 = "tf.Cast"(%identity) {Truncate = false} : (tensor<*xi8>) -> tensor<*xf32>
        %3 = "tf.Conv3D"(%input, %2) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. internal/lock/lock_windows.go

    	// elements and disables the interpretation of / as equivalent
    	// to \. The conversion here rewrites / to \ and elides
    	// . elements as well as trailing or duplicate separators. For
    	// simplicity it avoids the conversion entirely for relative
    	// paths or paths containing .. elements. For now,
    	// \\server\share paths are not converted to
    	// \\?\UNC\server\share paths because the rules for doing so
    	// are less well-specified.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/misc/kotlin/build.gradle.kts

    tasks.register("ensureDirectory") {
        // Store target directory into a variable to avoid project reference in the configuration cache
        val directory = file("images")
    
        doLast {
            Files.createDirectories(directory.toPath())
        }
    }
    // end::mkdir-example[]
    
    // tag::move-example[]
    tasks.register("moveReports") {
        // Store the build directory into a variable to avoid project reference in the configuration cache
        val dir = buildDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 971 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/PrecompiledPluginsCompileAvoidanceIntegrationTest.kt

     */
    
    package org.gradle.kotlin.dsl.compile
    
    import org.junit.Test
    
    
    class PrecompiledPluginsCompileAvoidanceIntegrationTest : AbstractCompileAvoidanceIntegrationTest() {
    
        @Test
        fun `avoids buildscript recompilation when task is configured in precompiled script plugin`() {
            val pluginId = "my-plugin"
            withPrecompiledScriptPluginInBuildSrc(
                pluginId,
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. guava/module.json

                "requires": "1.0.2"
              }
            },
            {
              "group": "com.google.guava",
              "module": "listenablefuture",
              "version": {
                "requires": "9999.0-empty-to-avoid-conflict-with-guava"
              }
            },
            {
              "group": "com.google.code.findbugs",
              "module": "jsr305",
              "version": {
                "requires": "${jsr305.version}"
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 18:11:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top