Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for workaround (0.69 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

        }
    
        /**
         * This is a workaround to preserve backward compatibility with IntelliJ IDEA.
         * The problem only occurs in IntelliJ IDEA because it parses {@link OperationDescriptor#getDisplayName()} to get the test display name.
         * Once its code is updated to use {@link org.gradle.tooling.events.test.TestOperationDescriptor#getTestDisplayName()}, the workaround can be removed as well.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

        }
    
        private Runnable runBuildInSingleUseDaemon(StartParameterInternal startParameter, DaemonParameters daemonParameters, DaemonRequestContext requestContext) {
            //(SF) this is a workaround until this story is completed. I'm hardcoding setting the idle timeout to be max X mins.
            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. mvnw

      wdir="$1"
      while [ "$wdir" != '/' ] ; do
        if [ -d "$wdir"/.mvn ] ; then
          basedir=$wdir
          break
        fi
        # workaround for JBEAP-8937 (on Solaris 10/Sparc)
        if [ -d "${wdir}" ]; then
          wdir=$(cd "$wdir/.." || exit 1; pwd)
        fi
        # end of workaround
      done
      printf '%s' "$(cd "$basedir" || exit 1; pwd)"
    }
    
    # concatenates all lines of a file
    concat_lines() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            // We zip the source distribution by using an archive task starting from the root project.
            // This caused problems when building the JARs in parallel.
            // We introduced a workaround for our build in https://github.com/gradle/gradle/pull/20366.
    
            // Configuration caching resolves the inputs once more to store the result in the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/runtime/signal_windows.go

    	//
    	// A closure can't be marked as nosplit, so it might
    	// call morestack if we are at the g0 stack limit.
    	// If that happens, the runtime will call abort
    	// and end up in sigtrampgo again.
    	// TODO: revisit this workaround if/when closures
    	// can be compiled as nosplit.
    	//
    	// Note that this scenario should only occur on
    	// TestG0StackOverflow. Any other occurrence should
    	// be treated as a bug.
    	var ret int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                // e.g., "/path/to/jdk/home!/modules/java.base". (JDK home path + JAR separator + actual file path)
                // To work with that JRT handler, a hacky workaround here is to add "modules" before the module name so that it can
                // find the actual file path.
                // See [LLFirJavaFacadeForBinaries#getBinaryPath] and [StandaloneProjectFactory#getBinaryPath] for a similar hack.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

      OpSet target_opset_;
    };
    
    // The AvgPool op is a same-scale op but it doesn't have int8 kernel, so
    // we cast its input to float and its output to int8 as a workaround.
    // TODO(b/229183248): Remove this workaround after int8 kernels have been
    // added to TF and XLA.
    struct QuantizeAvgPoolOpPattern
        : public OpRewritePattern<quantfork::StorageCastOp> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/fromLanguageTree/LanguageTreeToDom.kt

        DefaultElementNode(blockElement.name, blockElement.sourceData, arguments, content)
    
    
    private
    fun errorNode(blockElement: BlockElement, errors: Collection<DocumentError>): DefaultErrorNode {
        /** Workaround: we do not have the source data in [ErroneousStatement]s yet, so we have to get it from the [FailingResult]s inside those. */
        val sourceData = if (blockElement is ErroneousStatement) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/OptionalTest.java

        return FluentIterable.from(ImmutableList.<Number>of());
      }
    
      /*
       * The following tests demonstrate the shortcomings of or() and test that the casting workaround
       * mentioned in the method Javadoc does in fact compile.
       */
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeError1() {
        Optional<Integer> optionalInt = getSomeOptionalInt();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      // Convert event coordinates to svg coordinates.
      function toSvg(x, y) {
        const p = svg.createSVGPoint();
        p.x = x;
        p.y = y;
        let m = svg.getCTM();
        if (m == null) m = svg.getScreenCTM(); // Firefox workaround.
        return p.matrixTransform(m.inverse());
      }
    
      // Change the scaling for the svg to s, keeping the point denoted
      // by u (in svg coordinates]) fixed at the same screen location.
      function rescale(s, u) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top