Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 161 for human (0.04 sec)

  1. src/encoding/gob/debug.go

    		lineLength = 0
    		if m > len(data) {
    			m = len(data)
    		}
    		fmt.Fprintf(b, "% x\n", data[:m])
    		data = data[m:]
    	}
    	fmt.Fprint(b, "}\n")
    	os.Stderr.Write(b.Bytes())
    }
    
    // Debug prints a human-readable representation of the gob data read from r.
    // It is a no-op unless debugging was enabled when the package was built.
    func Debug(r io.Reader) {
    	err := debug(r)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/api/autoscaling/v1/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
    - 21.4K bytes
    - Viewed (0)
  4. 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)
  5. guava/src/com/google/common/base/Ascii.java

       * response to a sender.
       *
       * @since 8.0
       */
      public static final byte ACK = 6;
    
      /**
       * Bell ('\a'): A character for use when there is a need to call for human attention. It may
       * control alarm or attention devices.
       *
       * @since 8.0
       */
      public static final byte BEL = 7;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/types2/object.go

    	Type() Type      // object type
    	Exported() bool  // reports whether the name starts with a capital letter
    	Id() string      // object name if exported, qualified name if not exported (see func Id)
    
    	// String returns a human-readable string of the object.
    	String() string
    
    	// order reflects a package-level object's source order: if object
    	// a is before object b in the source, then a.order() < b.order().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // (brief) reason for the condition's last transition.
      // +optional
      optional string reason = 5;
    
      // Human readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    // JobList is a collection of jobs.
    message JobList {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Ascii.java

       * response to a sender.
       *
       * @since 8.0
       */
      public static final byte ACK = 6;
    
      /**
       * Bell ('\a'): A character for use when there is a need to call for human attention. It may
       * control alarm or attention devices.
       *
       * @since 8.0
       */
      public static final byte BEL = 7;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
Back to top