Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,486 for describes (0.1 sec)

  1. common-protos/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of CronJobs.
      repeated CronJob items = 2;
    }
    
    // CronJobSpec describes how the job execution will look like and when it will actually run.
    message CronJobSpec {
      // The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.
      optional string schedule = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestFailureResult.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.FailureResult;
    
    /**
     * Describes how a test operation finished with failures.
     *
     * @since 2.4
     */
    public interface TestFailureResult extends TestOperationResult, FailureResult {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 872 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformSuccessResult.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.transform;
    
    import org.gradle.tooling.events.SuccessResult;
    
    /**
     * Describes how a transform operation finished successfully.
     *
     * @since 5.1
     */
    public interface TransformSuccessResult extends TransformOperationResult, SuccessResult {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 891 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	return map_HTTPIngressRuleValue
    }
    
    var map_IPBlock = map[string]string{
    	"":       "IPBlock describes a particular CIDR (Ex. \"192.168.1.0/24\",\"2001:db8::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  5. maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.building;
    
    /**
     * Describes a problem that was encountered during settings 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, e.g. the settings file
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Status result = 3;
    }
    
    // ConversionReview describes a conversion request/response.
    message ConversionReview {
      // request describes the attributes for the conversion request.
      // +optional
      optional ConversionRequest request = 1;
    
      // response describes the attributes for the conversion response.
      // +optional
      optional ConversionResponse response = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblem.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.settings.building;
    
    /**
     * Describes a problem that was encountered during settings 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, e.g. the settings file
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/output/output.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/cli-runtime/pkg/genericclioptions"
    	"k8s.io/cli-runtime/pkg/printers"
    )
    
    const (
    	// TextOutput describes the plain text output
    	TextOutput = "text"
    
    	// JSONOutput describes the JSON output
    	JSONOutput = "json"
    
    	// YAMLOutput describes the YAML output
    	YAMLOutput = "yaml"
    )
    
    // TextPrintFlags is an interface to handle custom text output
    type TextPrintFlags interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousArtifactVariantsFailureDescriber.java

            AttributeDescriber describer = AttributeDescriberSelector.selectDescriber(failure.getRequestedAttributes(), schema.orElseThrow(IllegalArgumentException::new));
            String message = buildMultipleMatchingVariantsFailureMsg(failure, describer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/UnknownArtifactSelectionFailureDescriber.java

    import java.util.List;
    import java.util.Optional;
    
    /**
     * A {@link ResolutionFailureDescriber} that describes an {@link UnknownArtifactSelectionFailure}.
     *
     * This type also will wrap an existing exception of unknown type into an {@link ArtifactVariantSelectionException}.  If a
     * {@link ArtifactVariantSelectionException} is already the cause of the failure, it will be returned directly, with resolution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top