Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BuildMessage (0.16 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

        }
    
        String tooManyImportFiles(@DelegatesTo(value = NoImportFiles, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
            buildMessage(TooManyImportFiles, VersionCatalogProblemId.TOO_MANY_IMPORT_FILES, spec)
        }
    
        String tooManyImportInvokation(@DelegatesTo(value = TooManyFromInvokation, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  2. tensorflow/c/logging.cc

    static ::tensorflow::string BuildMessage(const char* fmt, va_list args) {
      ::tensorflow::string message;
      ::tensorflow::strings::Appendv(&message, fmt, args);
      return message;
    }
    
    void TF_Log(TF_LogLevel level, const char* fmt, ...) {
      if (level < TF_INFO || level > TF_FATAL) return;
      va_list args;
      va_start(args, fmt);
      auto message = BuildMessage(fmt, args);
      va_end(args);
      switch (level) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 18 13:10:33 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/VersionConflictException.java

        public VersionConflictException(Collection<Conflict> conflicts, List<String> resolutions) {
            super(buildMessage(conflicts));
            this.conflicts = conflicts;
            this.resolutions = resolutions;
        }
    
        public Collection<Conflict> getConflicts() {
            return conflicts;
        }
    
        private static String buildMessage(Collection<Conflict> conflicts) {
            TreeFormatter formatter = new TreeFormatter();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/TypedResolveException.java

        }
    
        /**
         * Creates a new instance with resolutions.
         */
        public TypedResolveException(String type, String displayName, Iterable<? extends Throwable> failures, List<String> resolutions) {
            super(buildMessage(type, displayName), failures, false);
            this.type = type;
            this.resolutions = ImmutableList.copyOf(resolutions);
        }
    
        /**
         * The type. This is used to build the failure message.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top