Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 757 for describeTo (0.2 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

                }
    
                class FailingBuildCacheServiceFactory implements BuildCacheServiceFactory<FailingBuildCache> {
                    FailingBuildCacheService createBuildCacheService(FailingBuildCache configuration, Describer describer) {
                        return new FailingBuildCacheService(configuration.shouldFail)
                    }
                }
    
                class FailingBuildCacheService implements BuildCacheService {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. 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)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemTransformer.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    import org.gradle.api.problems.Problems;
    import org.gradle.internal.operations.OperationIdentifier;
    
    /**
     * Describes a transformation that can be applied to a problem.
     * <p>
     * These transformers could be added to the {@link Problems} service to transform problems before they are reported.
     */
    public interface ProblemTransformer {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/fuzzing/BUILD

    # TODO(unda): describe this package.
    
    load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
    load("//tensorflow:tensorflow.bzl", "tf_copts")
    load(
        "//tensorflow/cc/framework/fuzzing:op_fuzzing.bzl",
        "tf_gen_op_wrappers_fuzz",
    )
    
    # copybara:uncomment package(default_applicable_licenses = ["//tensorflow:license"])
    
    cc_library(
        name = "cc_op_fuzz_gen_main",
        srcs = [
            "cc_op_fuzz_gen.cc",
            "cc_op_fuzz_gen.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestOperationDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.api.Incubating;
    import org.gradle.tooling.events.OperationDescriptor;
    
    /**
     * Describes a test operation for which an event has occurred.
     *
     * @since 2.4
     */
    public interface TestOperationDescriptor extends OperationDescriptor {
        /**
         * Returns the display name of the test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 1.2K 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. src/go/ast/scope.go

    		}
    	}
    	fmt.Fprintf(&buf, "}\n")
    	return buf.String()
    }
    
    // ----------------------------------------------------------------------------
    // Objects
    
    // An Object describes a named language entity such as a package,
    // constant, type, variable, function (incl. methods), or label.
    //
    // The Data fields contains object-specific data:
    //
    //	Kind    Data type         Data value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestOutputListener.java

    @EventScope(Scope.Build.class)
    @DeprecatedInGradleScope
    public interface TestOutputListener {
    
        /**
         * Fired when during test execution anything is printed to standard output or error
         *
         * @param testDescriptor describes the test
         * @param outputEvent the event that contains the output message and the destination (standard output or error, etc.)
         */
        void onOutput(TestDescriptor testDescriptor, TestOutputEvent outputEvent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top