Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 109 for human (0.34 sec)

  1. android/guava/src/com/google/common/io/BaseEncoding.java

     * <td>{@link #base16()}
     * <td>0-9 A-F
     * <td>2.00
     * <td>N/A
     * <td>Traditional hexadecimal. Defaults to upper case.
     * <tr>
     * <td>{@link #base32()}
     * <td>A-Z 2-7
     * <td>1.60
     * <td>=
     * <td>Human-readable; no possibility of mixing up 0/O or 1/I. Defaults to upper case.
     * <tr>
     * <td>{@link #base32Hex()}
     * <td>0-9 A-V
     * <td>1.60
     * <td>=
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types.go

    		}
    		clone.ImageStates = state
    	}
    	for key, value := range n.PVCRefCounts {
    		clone.PVCRefCounts[key] = value
    	}
    	return clone
    }
    
    // String returns representation of human readable format of this NodeInfo.
    func (n *NodeInfo) String() string {
    	podKeys := make([]string, len(n.Pods))
    	for i, p := range n.Pods {
    		podKeys[i] = p.Pod.Name
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/BaseEncoding.java

     * <td>{@link #base16()}
     * <td>0-9 A-F
     * <td>2.00
     * <td>N/A
     * <td>Traditional hexadecimal. Defaults to upper case.
     * <tr>
     * <td>{@link #base32()}
     * <td>A-Z 2-7
     * <td>1.60
     * <td>=
     * <td>Human-readable; no possibility of mixing up 0/O or 1/I. Defaults to upper case.
     * <tr>
     * <td>{@link #base32Hex()}
     * <td>0-9 A-V
     * <td>1.60
     * <td>=
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. pkg/apis/batch/types.go

    	// Last time the condition transit from one status to another.
    	// +optional
    	LastTransitionTime metav1.Time
    	// (brief) reason for the condition's last transition.
    	// +optional
    	Reason string
    	// Human readable message indicating details about last transition.
    	// +optional
    	Message string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types.go

    	// (brief) reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,5,opt,name=reason"`
    	// Human readable message indicating details about last transition.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,6,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  7. cmd/data-usage-cache.go

    	// Remove bloom filter from print.
    	s := fmt.Sprintf("info:%+v\n", d.Info)
    	for k, v := range d.Cache {
    		s += fmt.Sprintf("\t%v: %+v\n", k, v)
    	}
    	return strings.TrimSpace(s)
    }
    
    // String returns a human readable representation of the string.
    func (h dataUsageHash) String() string {
    	return string(h)
    }
    
    // Key returns the key.
    func (h dataUsageHash) Key() string {
    	return string(h)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/proxyconfig.go

      # Retrieve full bootstrap without using Kubernetes API
      ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
      istioctl proxy-config bootstrap --file envoy-config.json
    
      # Show a human-readable Istio and Envoy version summary
      istioctl proxy-config bootstrap <pod-name[.namespace]> -o short
    `,
    		Aliases: []string{"b"},
    		Args: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    }
    
    // Port represents a network port where a service is listening for
    // connections. The port should be annotated with the type of protocol
    // used by the port.
    type Port struct {
    	// Name ascribes a human readable name for the port object. When a
    	// service has multiple ports, the name field is mandatory
    	Name string `json:"name,omitempty"`
    
    	// Port number where the service can be reached. Does not necessarily
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package report summarizes a performance profile into a
    // human-readable report.
    package report
    
    import (
    	"fmt"
    	"io"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    	"text/tabwriter"
    	"time"
    
    	"github.com/google/pprof/internal/graph"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top