Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 371 for Describer (0.33 sec)

  1. src/os/file_unix.go

    // non-blocking mode, NewFile will attempt to return a pollable File
    // (one for which the SetDeadline methods work).
    //
    // After passing it to NewFile, fd may become invalid under the same
    // conditions described in the comments of the Fd method, and the same
    // constraints apply.
    func NewFile(fd uintptr, name string) *File {
    	fdi := int(fd)
    	if fdi < 0 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/LimitedDescriptionTest.groovy

        def "has limited description"() {
            when:
            desc.append("0").append("one").append("2").append("three !")
    
            then:
            desc.toString() == """2
    three !
    """
        }
    
        def "is described even when empty"() {
            expect:
            desc.toString().length() != 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    }
    
    func (CronJobList) SwaggerDoc() map[string]string {
    	return map_CronJobList
    }
    
    var map_CronJobSpec = map[string]string{
    	"":                           "CronJobSpec describes how the job execution will look like and when it will actually run.",
    	"schedule":                   "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types.go

    	// Failed or Succeeded) before creating a replacement Pod.
    	Failed PodReplacementPolicy = "Failed"
    )
    
    // PodFailurePolicyOnExitCodesRequirement describes the requirement for handling
    // a failed pod based on its container exit codes. In particular, it lookups the
    // .state.terminated.exitCode for each app container and init container status,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

          py::arg("enable_mlir_converter") = false,
          py::arg("quantization_py_function_library") = py::none(),
          R"pbdoc(
          Convert a model represented in `input_contents`. `model_flags_proto`
          describes model parameters. `flags_proto` describes conversion
          parameters (see relevant .protos for more information). Returns a string
          representing the contents of the converted model. When extended_return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/generated.proto

      // Read-only.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional DaemonSetStatus status = 3;
    }
    
    // DaemonSetCondition describes the state of a DaemonSet at a certain point.
    message DaemonSetCondition {
      // Type of DaemonSet condition.
      optional string type = 1;
    
      // Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

              exit 2
            fi
            if gcloud compute addresses describe "$1" --project "${PROJECT}" --region "${REGION}" >/dev/null 2>&1; then
              break
            fi
            echo "Master IP not visible yet. Waiting..."
            sleep 5
          done
          break
        fi
    
        if gcloud compute addresses describe "$1" \
          --project "${PROJECT}" \
          --region "${REGION}" >/dev/null 2>&1; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. pkg/apis/batch/types.go

    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta
    
    	// items is the list of Jobs.
    	Items []Job
    }
    
    // JobTemplateSpec describes the data a Job should have when created from a template
    type JobTemplateSpec struct {
    	// Standard object's metadata of the jobs created from this template.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Gradle's rich console displays extra information while builds are running.
    
    image::rich-cli.png[alt="Gradle Rich Console"]
    
    Features:
    
    * Progress bar and timer visually describe the overall status
    * Parallel work-in-progress lines below describe what is happening now
    * Colors and fonts are used to highlight significant output and errors
    
    [[sec:command_line_execution_options]]
    == Execution options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top