Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for fixArg (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    A lot of the problems Gradle handles are about fixing the mismatch between the expectations of a consumer and a producer.
    
    However, some projects are easier than others:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/build.gradle.kts

        testFixturesImplementation(project(":base-services"))
    }
    
    integTest.usesJavadocCodeSnippets = true
    
    strictCompile {
        ignoreDeprecations()
    }
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/jvm/scala/build.gradle.kts

        excludePatterns.add("org/gradle/api/tasks/scala/internal/*")
        excludePatterns.add("org/gradle/language/scala/tasks/*")
    }
    
    integTest.usesJavadocCodeSnippets = true
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/build.gradle.kts

        excludePatterns.add("org/gradle/api/tasks/**")
        excludePatterns.add("org/gradle/external/javadoc/**")
    }
    
    integTest.usesJavadocCodeSnippets = true
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/componentconfigs/kubelet_windows.go

    	// Golang filepath.IsAbs() function returns false unless the path contains a drive letter.
    	// This trips client-go and the kubelet, creating problems on Windows nodes.
    	// 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
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. .github/workflows/build.yml

            uses: gradle/actions/setup-gradle@v3
    
          - name: Run Checks
            run: ./gradlew test -Dokhttp.platform=bouncycastle
    
      testcorretto:
        runs-on: ubuntu-latest
        # TODO add master build after fixing all tests in CI
        if: contains(github.event.pull_request.labels.*.name, 'providers')
    
        steps:
          - name: Checkout
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

        enum IssueLocality {
            /**
             * Issue is "user actionable", is internal to the currently built project and is reparable from scope of it
             * by doing some change (for example by changing POM and fixing the problematic plugin configuration).
             */
            INTERNAL,
    
            /**
             * Issue (present in some plugin) is "developer actionable" (of given plugin, by changing code and doing
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        val isCodeQl: Boolean by lazy {
            // This logic is kept here instead of `codeql-analysis.init.gradle` because that file will hopefully be removed in the future.
            // Removing that file is waiting on the GitHub team fixing an issue in Autobuilder logic.
            CODEQL_ENVIRONMENT_VARIABLES.any { it in System.getenv() }
        }
        val jvm = org.gradle.internal.jvm.Jvm.current()
        val javaVersion = JavaVersion.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Joiner.java

      @CanIgnoreReturnValue
      public final <A extends Appendable> A appendTo(A appendable, @Nullable Object[] parts)
          throws IOException {
        @SuppressWarnings("nullness") // TODO: b/316358623 - Remove suppression after fixing checker
        List<?> partsList = Arrays.<@Nullable Object>asList(parts);
        return appendTo(appendable, partsList);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. hack/update-translations.sh

        rm tmp.pot
      else
        echo "Failed to update template.pot"
        exit 1
      fi
    fi
    
    if [[ "${fix_translations}" == "true" ]]; then
      echo "Fixing .po files"
      kube::util::ensure-temp-dir
      for PO_FILE in "${TRANSLATIONS}"/kubectl/*/LC_MESSAGES/k8s.po; do
        TMP="${KUBE_TEMP}/fix.po"
        if [[ "${PO_FILE}" =~ .*/default/.* || "${PO_FILE}" =~ .*/en_US/.*  ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top