Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 161 for human (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Automated testing allows developers to refactor and improve code with confidence.
    
    [[testing-pyramid]]
    === The testing pyramid
    
    Manual Testing :: While manual testing is straightforward, it is error-prone and requires human effort. For Gradle plugins, manual testing involves using the plugin in a build script.
    
    Automated Testing :: Automated testing includes unit, integration, and functional testing.
    
    image::testing-pyramid.png[float=right]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/dwarfgen/dwinl.go

    		if _, found := m[vp]; found {
    			// We can see collisions (variables with the same name/file/line/col) in obfuscated or machine-generated code -- see issue 44378 for an example. Skip duplicates in such cases, since it is unlikely that a human will be debugging such code.
    			continue
    		}
    		m[vp] = i
    	}
    	return m
    }
    
    func insertInlCall(dwcalls *dwarf.InlCalls, inlIdx int, imap map[int]int) int {
    	callIdx, found := imap[inlIdx]
    	if found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/Types.java

      @VisibleForTesting
      static WildcardType supertypeOf(Type lowerBound) {
        return new WildcardTypeImpl(new Type[] {lowerBound}, new Type[] {Object.class});
      }
    
      /**
       * Returns a human-readable string representation of {@code type}.
       *
       * <p>The format is subject to change.
       */
      static String toString(Type type) {
        return (type instanceof Class) ? ((Class<?>) type).getName() : type.toString();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

            if (ascii.exists()) {
                ascii.delete();
            }
            boolean hasKey = false;
            for (PGPPublicKeyRing keyRing : allKeyRings) {
                // First let's write some human readable info about the keyring being serialized
                try (OutputStream out = new FileOutputStream(ascii, true)) {
                    if (hasKey) {
                        out.write('\n');
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    type cond struct {
    	mask   uint64
    	bits   uint64
    	result bool
    }
    
    // Verbose reports whether the reports will be shown to users
    // and need to include a human-readable change description.
    // If not, the target can print just the Marker on a line by itself
    // and perhaps save some computation.
    func (m *Matcher) Verbose() bool {
    	return m.verbose
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    	// The watcher will be closed by server after the deadline,
    	// save it here to send bookmark events before that.
    	deadline            time.Time
    	allowWatchBookmarks bool
    	groupResource       schema.GroupResource
    
    	// human readable identifier that helps assigning cacheWatcher
    	// instance with request
    	identifier string
    
    	// drainInputBuffer indicates whether we should delay closing this watcher
    	// and send all event in the input buffer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. src/go/constant/value.go

    	// Kind returns the value kind.
    	Kind() Kind
    
    	// String returns a short, quoted (human-readable) form of the value.
    	// For numeric values, the result may be an approximation;
    	// for String values the result may be a shortened string.
    	// Use ExactString for a string representing a value exactly.
    	String() string
    
    	// ExactString returns an exact, quoted (human-readable) form of the value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/concepts.md

    ### Run Automatically on Startup
    
    In general, you will probably want the server program (e.g. Uvicorn) to be started automatically on server startup, and without needing any **human intervention**, to have a process always running with your API (e.g. Uvicorn running your FastAPI app).
    
    ### Separate Program
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    	"lastTransitionTime": "lastTransitionTime is the last time the condition transitioned from one status to another",
    	"reason":             "reason is the reason for the condition's last transition.",
    	"message":            "message is a human-readable explanation containing details about the transition",
    }
    
    func (HorizontalPodAutoscalerCondition) SwaggerDoc() map[string]string {
    	return map_HorizontalPodAutoscalerCondition
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. docs/en/docs/index.md

    * **Fast to code**: Increase the speed to develop features by about 200% to 300%. *
    * **Fewer bugs**: Reduce about 40% of human (developer) induced errors. *
    * **Intuitive**: Great editor support. <abbr title="also known as auto-complete, autocompletion, IntelliSense">Completion</abbr> everywhere. Less time debugging.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top