Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for light (0.11 sec)

  1. pkg/apis/core/types.go

    	//    and PersistentVolumeClaim).
    	//
    	// Use PersistentVolumeClaim or one of the vendor-specific
    	// APIs for volumes that persist for longer than the lifecycle
    	// of an individual pod.
    	//
    	// Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to
    	// be used that way - see the documentation of the driver for
    	// more information.
    	//
    	// A pod can use both types of ephemeral volumes and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	skipLen
    	skipCap
    )
    
    // assign does left = right.
    // Right has already been evaluated to ssa, left has not.
    // If deref is true, then we do left = *right instead (and right has already been nil-checked).
    // If deref is true and right == nil, just do left = 0.
    // skip indicates assignments (at the top level) that can be avoided.
    // mayOverlap indicates whether left&right might partially overlap in memory. Default is false.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	//    and PersistentVolumeClaim).
    	//
    	// Use PersistentVolumeClaim or one of the vendor-specific
    	// APIs for volumes that persist for longer than the lifecycle
    	// of an individual pod.
    	//
    	// Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to
    	// be used that way - see the documentation of the driver for
    	// more information.
    	//
    	// A pod can use both types of ephemeral volumes and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	// a closed stream." Our server never sends PRIORITY, so that exception
    	// does not apply.
    	//
    	// The serverConn might close an open stream while the stream's handler
    	// is still running. For example, the server might close a stream when it
    	// receives bad data from the client. If this happens, the handler might
    	// attempt to write a frame after the stream has been closed (since the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    				}
    			}
    		}
    	}
    	return allErrors
    }
    
    // validateImagePullSecrets checks to make sure the pull secrets are well
    // formed.  Right now, we only expect name to be set (it's the only field).  If
    // this ever changes and someone decides to set those fields, we'd like to
    // know.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    			if !tc.expectNodePorts && len(ports) > 0 {
    				t.Fatalf("expected NodePorts to not be allocated, found %v", ports)
    			}
    			if !tc.expectNodePorts {
    				return
    			}
    
    			// Make sure we got the right number of allocations
    			if want, got := len(ports), len(tc.svc.Spec.Ports); want != got {
    				t.Fatalf("expected %d NodePorts, found %d", want, got)
    			}
    
    			// Make sure they are all allocated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top