Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hasFailure (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            DependencySubstitutionApplicator.SubstitutionResult substitutionResult = dependencySubstitutionApplicator.apply(dependencyState.getDependency());
            if (substitutionResult.hasFailure()) {
                dependencyState.failure = new ModuleVersionResolveException(dependencyState.getRequested(), substitutionResult.getFailure());
                return dependencyState;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Returns true iff the current test has a non-fatal failure.
      static bool HasNonfatalFailure();
    
      // Returns true iff the current test has a (either fatal or
      // non-fatal) failure.
      static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); }
    
      // Logs a property for the current test, test case, or for the entire
      // invocation of the test program when used outside of the context of a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Returns true iff the current test has a non-fatal failure.
      static bool HasNonfatalFailure();
    
      // Returns true iff the current test has a (either fatal or
      // non-fatal) failure.
      static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); }
    
      // Logs a property for the current test, test case, or for the entire
      // invocation of the test program when used outside of the context of a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    }
                    return StringUtil.EMPTY;
                });
                final BulkResponse response = builder.execute().actionGet(fessConfig.getIndexBulkTimeout());
                if (response.hasFailures()) {
                    logger.warn("Failed to register {}: {}", dataPath, response.buildFailureMessage());
                }
            } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top