Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 126 for Lease (0.14 sec)

  1. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

                "type"
              ],
              "x-kubernetes-list-type": "map"
            }
          },
          "type": "object"
        },
        "io.k8s.api.coordination.v1.Lease": {
          "description": "Lease defines a lease concept.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// NamespacePublic is the namespace where we place public info (ConfigMaps)
    	NamespacePublic = "kube-public"
    	// NamespaceNodeLease is the namespace where we place node lease objects (used for node heartbeats)
    	NamespaceNodeLease = "kube-node-lease"
    	// TerminationMessagePathDefault means the default path to capture the application termination message running in a container
    	TerminationMessagePathDefault = "/dev/termination-log"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		r, err := printVolumeAttributesClass(&list.Items[i], options)
    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printLease(obj *coordination.Lease, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	var holderIdentity string
    	if obj.Spec.HolderIdentity != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - `client-go`: fixed the wait time for trying to acquire the leader lease ([#114872](https://github.com/kubernetes/kubernetes/pull/114872), [@Iceber](https://github.com/Iceber))
    - `etcd`: Updated to `v3.5.7` ([#115310](https://github.com/kubernetes/kubernetes/pull/115310), [@mzaian](https://github.com/mzaian))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	NamespaceAll string = ""
    	// NamespaceNodeLease is the namespace where we place node lease objects (used for node heartbeats)
    	NamespaceNodeLease string = "kube-node-lease"
    )
    
    // Volume represents a named volume in a pod that may be accessed by any container in the pod.
    type Volume struct {
    	// name of the volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. src/net/http/httptest/httptest.go

    //
    // An empty method means "GET".
    //
    // The provided body may be nil. If the body is of type *bytes.Reader,
    // *strings.Reader, or *bytes.Buffer, the Request.ContentLength is
    // set.
    //
    // NewRequest panics on error for ease of use in testing, where a
    // panic is acceptable.
    //
    // To generate a client HTTP request instead of a server request, see
    // the NewRequest function in the net/http package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

    - Fix endpoint reconciler not being able to delete the apiserver lease on shutdown ([#114137](https://github.com/kubernetes/kubernetes/pull/114137), [@aojea](https://github.com/aojea)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    
        // This dependency is used by the application.
        implementation(libs.guava)
    }
    
    // Apply a specific Java toolchain to ease working on different environments.
    java {
        toolchain {
            languageVersion.set(JavaLanguageVersion.of(11))
        }
    }
    
    application {
        // Define the main class for the application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    func (b *Block) Return() (ret *ast.ReturnStmt) {
    	if len(b.Nodes) > 0 {
    		ret, _ = b.Nodes[len(b.Nodes)-1].(*ast.ReturnStmt)
    	}
    	return
    }
    
    // Format formats the control-flow graph for ease of debugging.
    func (g *CFG) Format(fset *token.FileSet) string {
    	var buf bytes.Buffer
    	for _, b := range g.Blocks {
    		fmt.Fprintf(&buf, ".%d: # %s\n", b.Index, b.comment(fset))
    		for _, n := range b.Nodes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    This means that classes and plugins defined in buildSrc can be directly used in your project's build scripts without any additional configuration.
    
    4. *Ease of Testing*:
    +
    Since `buildSrc` is a separate build, it allows for easy testing of your custom build logic.
    You can write tests for your build code, ensuring that it behaves as expected.
    
    5. *Gradle Plugin Development*:
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top