Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 313 for workaround (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/os/pidfd_linux.go

    	// because the PID recycle issue doesn't exist (IOW, pidfd, unlike PID,
    	// is guaranteed to refer to one particular process). Thus, there is no
    	// need for the workaround (blockUntilWaitable + sigMu) from pidWait.
    	//
    	// We _do_ need to be careful about reuse of the pidfd FD number when
    	// closing the pidfd. See handle for more details.
    	handle, status := p.handleTransientAcquire()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/TaskFromPluginValidationIntegrationTest.groovy

         * the test fixture is not visible at compile time for included builds like they are
         * typically for precompiled script plugins.
         * This is really a workaround for the test setup, which doesn't bring any value to the
         * test itself and therefore is separated for readability.
         */
        private void copyValidationProblemClass() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/GeneratorTask.java

         *
         * @return The input file.
         */
        @Internal("Covered by inputFileIfExists")
        public File getInputFile() {
            return inputFile != null ? inputFile : getOutputFile();
        }
    
        // Workaround for when the task is given an input file that doesn't exist
        @Nullable  @Optional
        @PathSensitive(PathSensitivity.NONE)
        @InputFile
        protected File getInputFileIfExists() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. cmd/genyaml/gen_kubectl_yaml.go

    	genYaml(kubectl, "", outDir)
    	for _, c := range kubectl.Commands() {
    		genYaml(c, "kubectl", outDir)
    	}
    }
    
    // Temporary workaround for yaml lib generating incorrect yaml with long strings
    // that do not contain \n.
    func forceMultiLine(s string) string {
    	if len(s) > 60 && !strings.Contains(s, "\n") {
    		s = s + "\n"
    	}
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

    class SantaTrackerConfigurationCacheWorkaround {
        static void beforeBuild(File workingDir) {
            workingDir.listFiles().findAll { new File(it, "settings.gradle").exists() }.forEach { projectDir ->
                // Workaround for Android Gradle plugin checking for the presence of these directories at configuration time,
                // which invalidates configuration cache if their presence changes. Create these directories before the first build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top