Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 132 for describe (0.29 sec)

  1. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/rbac/v1beta1";
    
    // AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    message AggregationRule {
      // ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  2. internal/kms/kms.go

    	Verify(cxt context.Context) []VerifyResult
    }
    
    // VerifyResult describes the verification result details a KMS endpoint
    type VerifyResult struct {
    	Endpoint string
    	Decrypt  string
    	Encrypt  string
    	Version  string
    	Status   string
    }
    
    // Status describes the current state of a KMS.
    type Status struct {
    	Name      string   // The name of the KMS
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Mar 01 21:09:42 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Describes a problem that was encountered during project building. A problem can either be an exception that was
     * thrown or a simple string message. In addition, a problem carries a hint about its source.
     *
     * @since 4.0.0
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResult.java

     * under the License.
     */
    package org.apache.maven.plugin.version.internal;
    
    import org.apache.maven.plugin.version.PluginVersionResult;
    import org.eclipse.aether.repository.ArtifactRepository;
    
    /**
     * Describes the result of a plugin version resolution request.
     *
     * @since 3.0
     */
    class DefaultPluginVersionResult implements PluginVersionResult {
    
        private String version;
    
        private ArtifactRepository repository;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/execution/RuntimeInformation.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution;
    
    import org.apache.maven.artifact.versioning.ArtifactVersion;
    
    /**
     * Describes runtime information about the application.
     *
     * @deprecated Use {@link org.apache.maven.rtinfo.RuntimeInformation} instead.
     */
    @Deprecated
    public interface RuntimeInformation {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/collector/ProjectCollectionStrategy.java

    import java.util.List;
    
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingException;
    
    /**
     * Describes strategies for finding projects that Maven could build.
     */
    public interface ProjectCollectionStrategy {
        /**
         *
         * @param request
         * @return
         * @throws ProjectBuildingException
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ArtifactVersion.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.versioning;
    
    /**
     * Describes an artifact version in terms of its components, converts it to/from a string and
     * compares two versions.
     *
     */
    public interface ArtifactVersion extends Comparable<ArtifactVersion> {
        int getMajorVersion();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  8. .github/workflows/invalid_question.yml

            stale-issue-label: "status:stale"
            days-before-stale: 0
            days-before-close: 30
    Others
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Tue Apr 11 02:27:05 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResult.java

    package org.apache.maven.plugin.prefix.internal;
    
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.prefix.PluginPrefixResult;
    import org.eclipse.aether.repository.ArtifactRepository;
    
    /**
     * Describes the result of a plugin prefix resolution request.
     *
     * @since 3.0
     */
    class DefaultPluginPrefixResult implements PluginPrefixResult {
    
        private String groupId;
    
        private String artifactId;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/execution/DefaultRuntimeInformation.java

    import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
    import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
    
    /**
     * Describes runtime information about the application.
     *
     */
    @Deprecated
    @Named
    @Singleton
    public class DefaultRuntimeInformation implements RuntimeInformation, Initializable {
    
        @Inject
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
Back to top