Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 313 for workaround (0.35 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu-annotate-dynamic-shape-inputs.mlir

      // TODO(b/292540052): Below tf.addV2 instruction is replaced with just
      // returning arg0 due to the workaround mentioned in the above bug. Revert
      // this after the bug is fixed.
        // %0 = "tf.AddV2"(%arg0, %arg1) : (tensor<2048xi32>, tensor<2048xi32>) -> tensor<2048xi32>
        return %arg0 : tensor<2048xi32>
       }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingSuperclassChangeRule.groovy

    package gradlebuild.binarycompatibility.rules
    
    import japicmp.model.JApiClass
    import japicmp.model.JApiCompatibility
    import javassist.CtClass
    import me.champeau.gradle.japicmp.report.Violation
    
    /**
     * Workaround for <a href="https://github.com/melix/japicmp-gradle-plugin/issues/56">japicmp issue w.r.t. superclass breakage</a>.
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/FixSpockJUnitRulesOrderExtension.groovy

    import org.spockframework.runtime.extension.IGlobalExtension
    import org.spockframework.runtime.model.FeatureInfo
    import org.spockframework.runtime.model.FieldInfo
    import org.spockframework.runtime.model.SpecInfo
    
    /**
     * Workaround for https://github.com/spockframework/spock/issues/1050
     *
     * TODO Remove once Spock is upgraded to a fixed version
     */
    class FixSpockJUnitRulesOrderExtension implements IGlobalExtension {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptClassPathIntegrationTest.groovy

            buildFile '''
    void bar() {
       println 'Original bar'
    }
    
    FileCollection.metaClass.environmentMarkers = { String... markerStrings ->
       bar()
       // to make this test pass, a workaround is to uncomment this line
       // see the ticket for explanation why this happens
       //delegate.class.metaClass = null
    }
    
    configurations {
       compile
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:48:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/SupportedOptionsCollectingProcessor.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    
    /**
     * Collects all registered processors' supported options.
     *
     * <p>This is a workaround for https://bugs.openjdk.java.net/browse/JDK-8162455, which
     * will be triggered a lot more during incremental compilations, and can fail builds
     * when combined with {@code -Werror}.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/ApplicationServiceRegistration.kt

     * kept unique by remembering which service registrars have been applied already.
     *
     * This whole object is a workaround for improper application sharing, see [KT-64167](https://youtrack.jetbrains.com/issue/KT-64167).
     */
    object ApplicationServiceRegistration {
        private val lock = ReentrantReadWriteLock()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. pkg/kube/krt/recomputetrigger.go

    // any time the state changes.
    type RecomputeTrigger struct {
    	inner StaticSingleton[int32]
    	// krt will suppress events for unchanged resources. To workaround this, we constantly change and int each time TriggerRecomputation
    	// is called to ensure our event is not suppressed.
    	i *atomic.Int32
    }
    
    func NewRecomputeTrigger() *RecomputeTrigger {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:51:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DaemonGradleExecuter.java

            if(!isQuiet() && isAllowExtraLogging()) {
                if (!containsLoggingArgument(args)) {
                    args.add(0, "-i");
                }
            }
    
            // Workaround for https://issues.gradle.org/browse/GRADLE-2625
            if (getUserHomeDir() != null) {
                args.add(String.format("-Duser.home=%s", getUserHomeDir().getPath()));
            }
    
            return args;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/traces.go

    			}
    			return getSpanNameFromRequestInfo(info, r)
    		}),
    	}
    	wrappedHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		// Add the http.target attribute to the otelhttp span
    		// Workaround for https://github.com/open-telemetry/opentelemetry-go-contrib/issues/3743
    		if r.URL != nil {
    			trace.SpanFromContext(r.Context()).SetAttributes(semconv.HTTPTarget(r.URL.RequestURI()))
    		}
    		handler.ServeHTTP(w, r)
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 15 01:42:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. pkg/kubelet/cadvisor/helpers_linux.go

    	if detectCrioWorkaround(i) {
    		return cadvisorfs.LabelCrioContainers, nil
    	}
    	return "", fmt.Errorf("no containerfs label for configured runtime")
    }
    
    // This is a temporary workaround to get stats for cri-o from cadvisor
    // and should be removed.
    // Related to https://github.com/kubernetes/kubernetes/issues/51798
    func detectCrioWorkaround(i *imageFsInfoProvider) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:15:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top