Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 881 for please (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

            when:
            executer.expectDocumentedDeprecationWarning("The CopyProcessingSpec.setFileMode(Integer) method has been deprecated. " +
                "This is scheduled to be removed in Gradle 9.0. " +
                "Please use the filePermissions(Action) method instead. " +
                "Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#unix_file_permissions_deprecated")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. releasenotes/notes/enable-verify-certificate-at-client.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
    - |
      **Updated** default value of the feature flag `VERIFY_CERT_AT_CLIENT` to true.
      This means server certificates will be automatically verified using the OS CA certificates when not using a DestinationRule caCertificates field.
      If undesired please use the new `compatibilityVersion` feature to fallback to old behavior, or `insecureSkipVerify`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 24 15:53:10 UTC 2024
    - 911 bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/TestProjectLocator.groovy

                throw new IllegalArgumentException("Did not find test project at: '$dir.absolutePath'. Please run 'gradlew $name' to generate the test project.")
            }
    
            if (!hasSettingsScript(dir)) {
                throw new IllegalArgumentException("Test project at '$dir.absolutePath' does not have a settings script. Please add one.")
            }
            dir
        }
    
        private static boolean hasSettingsScript(File dir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. configure.py

        write_to_bazelrc('build --copt=-Wno-gnu-offsetof-extensions')
    
    
    def set_tf_cuda_paths(environ_cp):
      """Set TF_CUDA_PATHS."""
      ask_cuda_paths = (
          'Please specify the comma-separated list of base paths to look for CUDA '
          'libraries and headers. [Leave empty to use the default]: ')
      tf_cuda_paths = get_from_env_or_user_or_default(environ_cp, 'TF_CUDA_PATHS',
                                                      ask_cuda_paths, '')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/UnknownTestDescriptor.java

    @NonNullApi
    public class UnknownTestDescriptor implements TestDescriptorInternal {
    
        @Override
        public Object getId() {
            return "Unknown test (possible bug, please report)";
        }
    
        @Override
        public String getName() {
            return "Unknown test (possible bug, please report)";
        }
    
        @Override
        public String getClassName() {
            return null;
        }
    
        @Override
        public boolean isComposite() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. .github/workflows/stale-pr.yml

                **BUG!** This issue should not be marked stale by the "stale" workflow.
                Please report it to @gradle/bt-support team
              days-before-issue-close: -1
              close-issue-message: >
                **BUG!** This issue should not be closed by the "stale" workflow.
                Please report it to @gradle/bt-support team
              close-issue-reason: not_planned
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. cmd/sts-errors.go

    	},
    	ErrSTSNotInitialized: {
    		Code:           "STSNotInitialized",
    		Description:    "STS API not initialized, please try again.",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrSTSIAMNotInitialized: {
    		Code:           "STSIAMNotInitialized",
    		Description:    "STS IAM not initialized, please try again.",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrSTSUpstreamError: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/release/notes.md

    We love getting contributions from the Gradle community. For information on contributing, please see [gradle.org/contribute](https://gradle.org/contribute).
    
    ## Reporting problems
    
    If you find a problem with this release, please file a bug on [GitHub Issues](https://github.com/gradle/gradle/issues) adhering to our issue guidelines.
    If you're not sure you're encountering a bug, please use the [forum](https://discuss.gradle.org/c/help-discuss).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/03-gopls.yml

    name: Gopls bugs or feature requests
    description: Issues or feature requests for the Go language server (gopls)
    title: "x/tools/gopls: issue title"
    labels: ["gopls", "Tools"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: textarea
        id: gopls-version
        attributes:
          label: "gopls version"
          description: "Output of `gopls -v version` on the command line"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:09:04 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/IntQuestionPromptEvent.java

                    return PromptResult.response(result);
                }
                return PromptResult.newPrompt("Please enter an integer value >= " + minValue + " (default: " + defaultValue + "): ");
            } catch (NumberFormatException e) {
                return PromptResult.newPrompt("Please enter an integer value (min: " + minValue + ", default: " + defaultValue + "): ");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top