Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 313 for workaround (0.22 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocModularizedJavaIntegrationTest.groovy

            testBuildFile << """
                tasks.withType(Javadoc) {
                    exclude("test/internal")
                    // This shouldn't be necessarily, but is a workaround for now
                    options.addPathOption('-source-path').value.add(file('src/main/java'))
                }
            """
    
            when:
            succeeds("javadoc")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. build-logic/lifecycle/src/main/kotlin/gradlebuild.teamcity-import-test-data.gradle.kts

    import org.gradle.tooling.events.OperationCompletionListener
    import org.gradle.tooling.events.task.TaskFinishEvent
    import org.gradle.tooling.events.task.TaskSuccessResult
    
    /**
     * This is a workaround for https://youtrack.jetbrains.com/issue/TW-76894.
     *
     * In short, we want TeamCity to be aware of the test execution data (which tests are executed and how long they are),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 09:11:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/runtime/cgo/asm_ppc64x.s

    // the symbol name and descriptor as the AIX linker expects, but does not work if
    // referenced from within Go. Create and use an aliased descriptor of crosscall2
    // to workaround this.
    DEFINE_PPC64X_FUNCDESC(_crosscall2<>, crosscall2)
    #define CROSSCALL2_FPTR $_crosscall2<>(SB)
    #else
    // Use a local trampoline, to avoid taking the address of a dynamically exported
    // function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. Makefile

    %:
    	@$(MAKE_DOCKER) $@
    
    default:
    	@$(MAKE_DOCKER)
    
    shell:
    	@$(RUN) /bin/bash
    
    .PHONY: default shell
    
    else
    
    # If we are not in build container, we need a workaround to get environment properly set
    # Write to file, then include
    $(shell mkdir -p out)
    $(shell $(shell pwd)/common/scripts/setup_env.sh envfile > out/.env)
    include out/.env
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/tasks/BuildReceipt.kt

    import org.gradle.api.provider.Provider
    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.Optional
    import org.gradle.api.tasks.OutputDirectory
    import org.gradle.api.tasks.TaskAction
    // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390
    import org.gradle.kotlin.dsl.*
    import org.gradle.work.DisableCachingByDefault
    import java.text.SimpleDateFormat
    import java.util.Date
    import java.util.Properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildEnvironmentConfigurationConverter.java

            daemonParametersConverter.convert(args, properties.getProperties(), daemonParameters);
    
            // This is a workaround to maintain existing behavior that allowed
            // toolchain-specific properties to be specified with -P instead of -D
            Map<String, String> gradlePropertiesAsSeenByToolchains = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. .teamcity/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/.."; pwd`
        fi
        # end of workaround
      done
      echo "${basedir}"
    }
    
    # concatenates all lines of a file
    concat_lines() {
      if [ -f "$1" ]; then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  8. pkg/test/framework/components/environment/kube/settings.go

    	KubeConfig []string
    
    	// Indicates that the LoadBalancer services can obtain a public IP. If not, NodePort be used as a workaround
    	// for ingress gateway. KinD will not support LoadBalancer out of the box and requires a workaround such as
    	// MetalLB.
    	LoadBalancerSupported bool
    
    	// Architecture indicates the architecture of the cluster under test
    	Architecture string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/componentconfigs/kubelet_windows.go

    	// Fixing it in client-go or the kubelet is a breaking change to existing Windows
    	// users that rely on relative paths:
    	//   https://github.com/kubernetes/kubernetes/pull/77710#issuecomment-491989621
    	//
    	// Thus, a workaround here is to adapt the KubeletConfiguration paths for Windows.
    	// Note this is currently bound to KubeletConfiguration v1beta1.
    	klog.V(2).Infoln("[componentconfig] Adapting the paths in the KubeletConfiguration for Windows...")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/XCTest.java

        }
    
        @Override
        protected TestExecuter<XCTestTestExecutionSpec> createTestExecuter() {
            return getProject().getObjects().newInstance(XCTestExecuter.class);
        }
    
        /**
         * Workaround for when the task is given an input file that doesn't exist
         */
        @SkipWhenEmpty
        @Nullable
        @Optional
        @PathSensitive(PathSensitivity.ABSOLUTE)
        @InputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top