Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,326 for Paused (0.1 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      const char* summary() const { return summary_.c_str(); }
    
      // Gets the message associated with the test part.
      const char* message() const { return message_.c_str(); }
    
      // Returns true iff the test part passed.
      bool passed() const { return type_ == kSuccess; }
    
      // Returns true iff the test part failed.
      bool failed() const { return type_ != kSuccess; }
    
      // Returns true iff the test part non-fatally failed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingException.java

         *
         * @param problems The problems that cause this exception, must not be {@code null}.
         */
        public ToolchainsBuildingException(List<Problem> problems) {
            super(toMessage(problems));
    
            this.problems = new ArrayList<>();
            if (problems != null) {
                this.problems.addAll(problems);
            }
        }
    
        /**
         * Gets the problems that caused this exception.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // info, the "flag:"+flagName counter will be incremented.
    //
    // CountCommandLineFlags must be called after flags are parsed
    // with flag.Parse.
    //
    // For instance, if the -S flag is passed to cmd/compile and
    // CountCommandLineFlags is called after flags are parsed,
    // the "compile/flag:S" counter will be incremented.
    func CountCommandLineFlags() {
    	prefix := "flag:"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java

                return "";
            }
            return result.getModelIds().get(0);
        }
    
        /**
         * Gets the problems that caused this exception.
         *
         * @return The problems that caused this exception, never {@code null}.
         */
        public List<ModelProblem> getProblems() {
            if (result == null) {
                return Collections.emptyList();
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. tests/integration/security/fuzz/README.md

    The directory includes fuzz tests for security policy:
    
    - request authentication: test potential bypass and crash in the JWT filter caused by malformed JWT token and common
      vulnerabilities in JWT validation.
    
    - authorization policy: test potential policy bypass issues caused by path normalization issues in Istio and Envoy.
    
    This test is currently optional and not executed in the normal integration test. It is recommended to run the test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 09 02:34:11 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestFailure.java

        private final TestFailureDetails details;
    
        private final List<TestFailure> causes;
    
        public DefaultTestFailure(Throwable rawFailure, TestFailureDetails details, List<TestFailure> causes) {
            this.rawFailure = rawFailure;
            this.details = details;
            this.causes = causes;
        }
    
        @Override
        public Throwable getRawFailure() {
            return rawFailure;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. releasenotes/notes/41020.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - https://github.com/istio/istio/issues/40984
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 16 16:52:37 UTC 2022
    - 255 bytes
    - Viewed (0)
  8. releasenotes/notes/fix-high-memory-usage-due-toserviceentries.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 25531
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 24 18:00:11 UTC 2020
    - 205 bytes
    - Viewed (0)
  9. releasenotes/notes/48224.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 48224
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 08:44:39 UTC 2023
    - 213 bytes
    - Viewed (0)
  10. releasenotes/notes/se-conflict.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50478
    releaseNotes:
      - |
        **Fixed** a behavioral change in Istio 1.20 that caused merging of ServiceEntries with the same hostname and port names
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 261 bytes
    - Viewed (0)
Back to top