Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 326 for human (0.22 sec)

  1. cmd/kubeadm/app/util/error.go

    			handleErr(msg, PreFlightExitCode)
    		case errorsutil.Aggregate:
    			handleErr(msg, ValidationExitCode)
    
    		default:
    			handleErr(msg, DefaultErrorExitCode)
    		}
    	}
    }
    
    // FormatErrMsg returns a human-readable string describing the slice of errors passed to the function
    func FormatErrMsg(errs []error) string {
    	var errMsg string
    	for _, err := range errs {
    		errMsg = fmt.Sprintf("%s\t- %s\n", errMsg, err.Error())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. fastapi/exceptions.py

                    It is UTF-8-encoded data. The interpretation of the reason is up to the
                    application, it is not specified by the WebSocket specification.
    
                    It could contain text that could be human-readable or interpretable
                    by the client code, etc.
                    """
                ),
            ] = None,
        ) -> None:
            super().__init__(code=code, reason=reason)
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pkg/apis/apiserverinternal/types.go

    	ObservedGeneration int64
    	// Last time the condition transitioned from one status to another.
    	LastTransitionTime metav1.Time
    	// The reason for the condition's last transition.
    	// +required
    	Reason string
    	// A human readable message indicating details about the transition.
    	// +required
    	Message string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // StorageVersionList A list of StorageVersions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPom.java

        void setPackaging(String packaging);
    
        /**
         * The name for the publication represented by this POM.
         *
         * @since 4.8
         */
        Property<String> getName();
    
        /**
         * A short, human-readable description for the publication represented by this POM.
         *
         * @since 4.8
         */
        Property<String> getDescription();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipFileTree.java

                            visitor.visitFile(details);
                        }
                    }
                } catch (GradleException e) {
                    throw e; // Gradle exceptions are already meant to be human-readable, so just rethrow it
                } catch (Exception e) {
                    throw new GradleException(format("Cannot expand %s.", getDisplayName()), e);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

        }
    
        def "human error in declaring replacements is neatly reported"() {
            buildFile << """
                dependencies.modules.module('org:foo') { replacedBy('org:bar:2.0') }
            """
    
            expect:
            fails().assertHasCause("Cannot convert the provided notation to an object of type ModuleIdentifier: org:bar:2.0")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // The reason for the condition's last transition.
      // +required
      optional string reason = 5;
    
      // A human readable message indicating details about the transition.
      // +required
      optional string message = 6;
    }
    
    // A list of StorageVersions.
    message StorageVersionList {
      // Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"message": {
    						SchemaProps: spec.SchemaProps{
    							Description: "A human readable message indicating details about the transition.",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    				},
    				Required: []string{"type", "status"},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         *
         * @return the problems that were encountered during the project building, can be empty but never {@code null}
         */
        @Nonnull
        List<ModelProblem> getProblems();
    
        /**
         * Creates a human readable representation of these errors.
         */
        String toString();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

            String version = reduce(properties.getProperty(BUILD_VERSION_PROPERTY));
            return (version != null ? version : "<version unknown>");
        }
    
        /**
         * Create a human-readable string containing the Maven version, buildnumber, and time of build
         *
         * @param buildProperties The build properties
         * @return Readable build info
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top