Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/net/InetAddresses.java

            runStart = -1;
          }
        }
        if (bestRunLength >= 2) {
          Arrays.fill(hextets, bestRunStart, bestRunStart + bestRunLength, -1);
        }
      }
    
      /**
       * Convert a list of hextets into a human-readable IPv6 address.
       *
       * <p>In order for "::" compression to work, the input should contain negative sentinel values in
       * place of the elided zeroes.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

            runStart = -1;
          }
        }
        if (bestRunLength >= 2) {
          Arrays.fill(hextets, bestRunStart, bestRunStart + bestRunLength, -1);
        }
      }
    
      /**
       * Convert a list of hextets into a human-readable IPv6 address.
       *
       * <p>In order for "::" compression to work, the input should contain negative sentinel values in
       * place of the elided zeroes.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"fieldRef": "The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is \"spec.validations[0].expression\"",
    	"warning":  "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.",
    }
    
    func (ExpressionWarning) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  10. src/os/exec/exec.go

    	if ctx == nil {
    		panic("nil Context")
    	}
    	cmd := Command(name, arg...)
    	cmd.ctx = ctx
    	cmd.Cancel = func() error {
    		return cmd.Process.Kill()
    	}
    	return cmd
    }
    
    // String returns a human-readable description of c.
    // It is intended only for debugging.
    // In particular, it is not suitable for use as input to a shell.
    // The output of String may vary across Go releases.
    func (c *Cmd) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top