Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for Printer (0.25 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            "replicas": {
              "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
              "format": "int32",
              "type": "integer"
            },
            "revisionHistoryLimit": {
              "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

              "kind": "RuntimeClass",
              "version": "v1"
            }
          },
          "parameters": [
            {
              "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

              "kind": "CustomResourceDefinition",
              "version": "v1"
            }
          },
          "parameters": [
            {
              "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    				nExtReloc++
    				o = 0
    				if !target.IsAMD64() {
    					o = r.Add()
    				}
    				break
    			}
    
    			if target.IsElf() && target.IsARM() {
    				// On ELF ARM, the thread pointer is 8 bytes before
    				// the start of the thread-local data block, so add 8
    				// to the actual TLS offset (r->sym->value).
    				// This 8 seems to be a fundamental constant of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  5. src/net/http/server.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname newBufioWriterSize
    func newBufioWriterSize(w io.Writer, size int) *bufio.Writer {
    	pool := bufioWriterPool(size)
    	if pool != nil {
    		if v := pool.Get(); v != nil {
    			bw := v.(*bufio.Writer)
    			bw.Reset(w)
    			return bw
    		}
    	}
    	return bufio.NewWriterSize(w, size)
    }
    
    // putBufioWriter should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    			Name:       "rc1",
    			UID:        "1",
    			APIVersion: "v1",
    			Controller: pointer.Bool(true),
    		},
    	})
    	rc1Pod2 := getPod("rc1Pod2", []metav1.OwnerReference{
    		{
    			Kind:       "ReplicationController",
    			Name:       "rc1",
    			UID:        "1",
    			APIVersion: "v1",
    			Controller: pointer.Bool(false),
    		},
    	})
    	rc2Pod1 := getPod("rc2Pod1", []metav1.OwnerReference{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    //
    // In parallel with the scan through the ytable for the appropriate line, there
    // is a z pointer that starts out pointing at the strange magic byte list in
    // the Optab struct.  With each step past a non-matching ytable line, z
    // advances by the 4th entry in the line.  When a matching line is found, that
    // z pointer has the extra data to use in laying down the instruction bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	"k8s.io/kubernetes/pkg/controller/testutil"
    	controllerutil "k8s.io/kubernetes/pkg/controller/util/node"
    	"k8s.io/kubernetes/pkg/util/node"
    	taintutils "k8s.io/kubernetes/pkg/util/taints"
    	"k8s.io/utils/pointer"
    )
    
    const (
    	testNodeMonitorGracePeriod = 40 * time.Second
    	testNodeStartupGracePeriod = 60 * time.Second
    	testNodeMonitorPeriod      = 5 * time.Second
    	testRateLimiterQPS         = float32(100000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func init() {
    }
    
    const (
    	testKubeletHostname = "127.0.0.1"
    	testKubeletHostIP   = "127.0.0.1"
    	testKubeletHostIPv6 = "::1"
    
    	// TODO(harry) any global place for these two?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Bulk process is started. */
        public static final String SUCCESS_bulk_process_started = "{success.bulk_process_started}";
    
        /** The key of the message: Printed thread dump to log file. */
        public static final String SUCCESS_print_thread_dump = "{success.print_thread_dump}";
    
        /** The key of the message: Installing {0} plugin. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top