Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 109 for human (0.09 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. 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)
  6. 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)
  7. pkg/controller/resourcequota/resource_quota_controller.go

    			) {
    			utilruntime.HandleError(fmt.Errorf("timed out waiting for quota monitor sync"))
    			return
    		}
    
    		logger.V(2).Info("synced quota controller")
    	}, period)
    }
    
    // printDiff returns a human-readable summary of what resources were added and removed
    func printDiff(oldResources, newResources map[schema.GroupVersionResource]struct{}) string {
    	removed := sets.NewString()
    	for oldResource := range oldResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // reason is the reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    // HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. src/runtime/metrics/doc.go

    with a new key and a new "kind."
    
    # Metric key format
    
    As mentioned earlier, metric keys are strings. Their format is simple and well-defined,
    designed to be both human and machine readable. It is split into two components,
    separated by a colon: a rooted path and a unit. The choice to include the unit in
    the key is motivated by compatibility: if a metric's unit changes, its semantics likely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

         */
        public URI relativizeFrom(TestFile baseDir) {
            return baseDir.toURI().relativize(toURI());
        }
    
        /**
         * Returns a human-readable relative path to this file from the base directory passed to create this TestFile.
         *
         * Fails if this TestFile was created in a way that did not provide a relative base.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top