Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 312 for workarounds (0.13 sec)

  1. 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)
  2. .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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/DetermineBaselines.kt

    import gradlebuild.basics.kotlindsl.execAndGetStdout
    import org.gradle.api.DefaultTask
    import org.gradle.api.provider.Property
    import org.gradle.api.tasks.Internal
    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 javax.inject.Inject
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    === Kotlin DSL
    
    The fix described in the referenced documentation does not work directly if you are using the Kotlin DSL; this is due to incompatibilities between that Kotlin DSL and the Fabric plugin.
    There is a simple workaround for this, based on <<kotlin_dsl.adoc#using_a_groovy_script,this advice>> from the Kotlin DSL primer.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/options/deprecated.go

    	// We found an issue(https://github.com/kubernetes/kubernetes/issues/110175) in which Pods can be stuck in the unschedulable pod pool for 5 min, and using this flag is the only workaround for this issue.
    	// This issue only could happen if you use custom plugins or if you change plugin set being used in your scheduler via the scheduler config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 13:24:38 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: ISTIO_MUTUAL
    ---
    # TODO(nmittler): Shouldn't need this. Workaround for https://github.com/istio/istio/issues/38704.
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: test-egress
      namespace: {{ .SystemNamespace.Name }}
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top