Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for human (0.37 sec)

  1. pkg/kubelet/container/runtime.go

    	Status bool
    	// Reason is brief reason for the condition's last transition.
    	Reason string
    	// Message is human readable message indicating details about last transition.
    	Message string
    }
    
    // String formats the runtime condition into human readable string.
    func (c *RuntimeCondition) String() string {
    	return fmt.Sprintf("%s=%t reason:%s message:%s", c.Type, c.Status, c.Reason, c.Message)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. 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)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTestOperationsTest.groovy

            def testDescriptor = Mock(InternalJvmTestDescriptor)
            _ * testDescriptor.getId() >> 1
            _ * testDescriptor.getName() >> 'some test suite'
            _ * testDescriptor.getDisplayName() >> 'some test suite in human readable form'
            _ * testDescriptor.getTestKind() >> InternalJvmTestDescriptor.KIND_SUITE
            _ * testDescriptor.getSuiteName() >> 'some suite'
            _ * testDescriptor.getClassName() >> 'some class'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    The module metadata file is intended to be machine-generated rather than written by a human but is intended to be human-readable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTaskOperationsTest.groovy

            def taskDescriptor = Mock(InternalTaskDescriptor)
            _ * taskDescriptor.getId() >> ":someTask"
            _ * taskDescriptor.getName() >> 'some task'
            _ * taskDescriptor.getDisplayName() >> 'some task in human readable form'
            _ * taskDescriptor.getTaskPath() >> ':some:path'
            _ * taskDescriptor.getParentId() >> null
    
            def startEvent = Mock(InternalOperationStartedProgressEvent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_experimental.h

    // Returns the graph content in a human-readable format, with length set in
    // `len`. The format is subject to change in the future.
    // The returned string is heap-allocated, and caller should call free() on it.
    TF_CAPI_EXPORT extern const char* TF_GraphDebugString(TF_Graph* graph,
                                                          size_t* len);
    
    // Returns the function content in a human-readable format, with length set in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tfcompile.bzl

          graph: The TensorFlow GraphDef to compile.  If the file ends in '.pbtxt'
            it is expected to be in the human-readable proto text format, otherwise
            it is expected to be in the proto binary format.
          config: File containing tensorflow.tf2xla.Config proto.  If the file ends
            in '.pbtxt' it is expected to be in the human-readable proto text
            format, otherwise it is expected to be in the proto binary format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Must not point to metdata fields.
    	// Required.
    	JSONPath string
    }
    
    // CustomResourceColumnDefinition specifies a column for server side printing.
    type CustomResourceColumnDefinition struct {
    	// name is a human readable name for the column.
    	Name string
    	// type is an OpenAPI type definition for this column.
    	// See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.
    	Type string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    The module metadata file is intended to be machine-generated rather than written by a human but is intended to be human-readable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf_test.go

    							if p.Flags == elf.PF_R {
    								foundRO = true
    							}
    						}
    					}
    					if !foundRO {
    						// Things went off the rails. Write out some
    						// useful information for a human looking at the
    						// test failure.
    						t.Logf("test %s: %q section not in readonly segment",
    							wsro.Name, test.name)
    						t.Logf("section %s location: st=0x%x en=0x%x\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top