Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for sensitive (0.65 sec)

  1. src/cmd/go/testdata/script/list_case_collision.txt

    go list -json example/a
    stdout 'case-insensitive import collision'
    
    ! go build example/a
    stderr 'case-insensitive import collision'
    
    # List files explicitly on command line, to encounter case-checking
    # logic even on case-insensitive filesystems.
    cp b/file.go b/FILE.go  # no-op on case-insensitive filesystems
    ! go list b/file.go b/FILE.go
    stderr 'case-insensitive file name collision'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1K bytes
    - Viewed (0)
  2. src/cmd/go/scriptconds_test.go

    	add("asan", sysCondition("-asan", platform.ASanSupported, true))
    	add("buildmode", script.PrefixCondition("go supports -buildmode=<suffix>", hasBuildmode))
    	add("case-sensitive", script.OnceCondition("$WORK filesystem is case-sensitive", isCaseSensitive))
    	add("cc", script.PrefixCondition("go env CC = <suffix> (ignoring the go/env file)", ccIs))
    	add("cgo", script.BoolCondition("host CGO_ENABLED", testenv.HasCGO()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Repository.java

        /**
         * Gets the identifier of this repository.
         *
         * @return the (case-sensitive) identifier, never {@code null}
         */
        @Nonnull
        String getId();
    
        /**
         * Gets the type of the repository, for example "default".
         *
         * @return the (case-sensitive) type of the repository, never {@code null}
         */
        @Nonnull
        String getType();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseSensitiveVfsRelativePathTest.groovy

                }
                assert foundIndex == i
            }
        }
    
        def "children #children are sorted the same with path sensitive and path insensitive compare"() {
            def caseInsensitiveSorted = children.toSorted(getPathComparator(CaseSensitivity.CASE_INSENSITIVE))
            def caseSensitiveSorted = children.toSorted(getPathComparator(CASE_SENSITIVE))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/12-telemetry.yml

          For new upload configuration, which new counters will be collected, what
          do they measure, and why is it important to collect them?
          Note that uploaded data must not carry sensitive user information.
          See [go.dev/doc/telemetry#proposals](https://go.dev/doc/telemetry#proposals)
          for more details on telemetry proposals.
      validations:
        required: true
    - type: input
      attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_goroot_symlink.txt

    stdout '^encoding/binary: '$WORK${/}lib${/}goroot${/}src${/}encoding${/}binary'$'
    
    # Most path lookups in GOROOT are not sensitive to symlinks. However, patterns
    # involving '...' wildcards must use Walk to check the GOROOT tree, which makes
    # them more sensitive to symlinks (because Walk doesn't follow them).
    #
    # So we check such a pattern to confirm that it works and reports a path relative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/PathUtil.java

     * For comparing, a list of paths is sorted in the same order on a case-insensitive and a case-sensitive file system.
     * We do this so the order of the children of directory snapshots is stable across builds.
     *
     * The order is as follows:
     * - The comparison is per segment of the path.
     * - If the segments are different with respect to case-insensitive comparison, the result from case-insensitive comparison is used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/credentials/CredentialsToStringSpec.groovy

    package org.gradle.internal.credentials
    
    import spock.lang.Specification
    
    class CredentialsToStringSpec extends Specification {
    
        private static String secretValue = UUID.randomUUID().toString()
    
        def "sensitive credentials values are not leaked via toString"() {
            expect:
            !credentials.toString().contains(secretValue)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    the behavior you are seeing is confirmed as a bug or issue, it can easily be re-raised in the issue tracker.
    
    ## Filing issues
    
    Sensitive security-related issues should be reported to [******@****.***](mailto:******@****.***).
    See the [security policy](https://golang.org/security) for details.
    
    The recommended way to file an issue is by running `go bug`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:00:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

         * env.PATH}. Unlike native environment variables, properties are always case-sensitive. For the sake of
         * determinism, the environment variable names will be normalized to upper case on platforms with case-insensitive
         * variable lookup.
         *
         * @param props The properties to add the environment variables to, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top