Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 312 for workarounds (0.25 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleController.java

            return runBuild(() -> {
                T result = buildLifecycleController.withSettings(action);
                return ExecutionResult.succeeded(result);
            });
        }
    
        // Temporary workaround to make incremental sync work. IDEA is requires to execute `help` task
        // to prevent default tasks be executed during sync. This is forcing all projects configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/tasks/DetermineBaselinesTest.kt

    import gradlebuild.basics.kotlindsl.execAndGetStdout
    import io.mockk.every
    import io.mockk.mockkStatic
    import io.mockk.unmockkStatic
    import org.gradle.internal.os.OperatingSystem
    // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390
    import org.gradle.kotlin.dsl.*
    import org.gradle.testfixtures.ProjectBuilder
    import org.junit.After
    import org.junit.Assume
    import org.junit.Before
    import org.junit.Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    package facts
    
    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // importMap computes the import map for a package by traversing the
    // entire exported API each of its imports.
    //
    // This is a workaround for the fact that we cannot access the map used
    // internally by the types.Importer returned by go/importer. The entries
    // in this map are the packages and objects that may be relevant to the
    // current analysis unit.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

            if (attrs == null) {
                return new UnauthorizedFileVisitDetails(file, relativePath);
            } else if (attrs.isDirectory() && OperatingSystem.current() == OperatingSystem.WINDOWS) {
                // Workaround for https://github.com/gradle/gradle/issues/11577
                return new DefaultFileVisitDetails(file, relativePath, stopFlag, fileSystem, fileSystem);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/DefaultClassLoaderFactory.java

            //    classname came from step 2.
            //
            // So, as a workaround, locate and make visible XML parser classes from the system classloader in our isolated ClassLoader.
            //
            // Note that in practise, this is only triggered when running in our tests
    
            if (needJaxpImpl()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    
    // Where possible and practical, generate CC opcodes. Due to the structure of the rules, there are limits to how
    // a Value can be rewritten which make it impossible to correctly rewrite sibling Value users. To workaround this
    // case, candidates for CC opcodes are converted in two steps:
    //   1. Convert all (x (Op ...) ...) into (x (Select0 (OpCC ...) ...). See convertPPC64OpToOpCC for more
    //      detail on how and why this is done there.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

        }
        outgoing {
            artifact(futurePluginVersionsDestDir) {
                builtBy(writeFuturePluginVersions)
            }
        }
    }
    
    // Workaround for https://github.com/gradle/gradlecom/issues/627
    configurations.archives.get().allArtifacts.removeIf {
        it.name != "plugins"
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

            //
            // We isolate the Gradle daemons so we know the daemons are only used for these particular tests.
            //
            // To workaround a msbuild issue, we require the daemon to be used by the test executor, so the Gradle daemon will be
            // started before msbuild is executed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/Kerb5Authenticator.java

     * See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration.
     * See {@link jcifs.Configuration#isDfsConvertToFQDN()} for a workaround.
     */
    public class Kerb5Authenticator extends NtlmPasswordAuthenticator {
    
        private static final long serialVersionUID = 1999400043787454432L;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
Back to top