Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NodeLost (0.13 sec)

  1. pkg/util/node/node.go

    	netutils "k8s.io/utils/net"
    )
    
    const (
    	// NodeUnreachablePodReason is the reason on a pod when its state cannot be confirmed as kubelet is unresponsive
    	// on the node it is (was) running.
    	NodeUnreachablePodReason = "NodeLost"
    	// NodeUnreachablePodMessage is the message on a pod when its state cannot be confirmed as kubelet is unresponsive
    	// on the node it is (was) running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/shell.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Interactive debugging shell for codehost.Repo implementations.
    
    package main
    
    import (
    	"archive/zip"
    	"bufio"
    	"bytes"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"strings"
    	"time"
    
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/modfetch/codehost"
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go run shell.go vcs remote\n")
    	os.Exit(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modinfo/info.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package modinfo
    
    import (
    	"cmd/go/internal/modfetch/codehost"
    	"encoding/json"
    	"time"
    )
    
    // Note that these structs are publicly visible (part of go list's API)
    // and the fields are documented in the help text in ../list/list.go
    
    type ModulePublic struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/mvs.go

    // license that can be found in the LICENSE file.
    
    package modload
    
    import (
    	"context"
    	"errors"
    	"os"
    	"sort"
    
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch"
    	"cmd/go/internal/modfetch/codehost"
    
    	"golang.org/x/mod/module"
    )
    
    // cmpVersion implements the comparison for versions in the module loader.
    //
    // It is consistent with gover.ModCompare except that as a special case,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/toolchain.go

    // license that can be found in the LICENSE file.
    
    package modfetch
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"sort"
    	"strings"
    
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch/codehost"
    )
    
    // A toolchainRepo is a synthesized repository reporting Go toolchain versions.
    // It has path "go" or "toolchain". The "go" repo reports versions like "1.2".
    // The "toolchain" repo reports versions like "go1.2".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/list.go

    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"runtime"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch/codehost"
    	"cmd/go/internal/modinfo"
    	"cmd/go/internal/search"
    	"cmd/internal/pkgpattern"
    
    	"golang.org/x/mod/module"
    )
    
    type ListMode int
    
    const (
    	ListU ListMode = 1 << iota
    	ListRetracted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/svn.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codehost
    
    import (
    	"archive/zip"
    	"context"
    	"encoding/xml"
    	"fmt"
    	"io"
    	"os"
    	"path"
    	"path/filepath"
    	"strconv"
    	"time"
    
    	"cmd/go/internal/base"
    )
    
    func svnParseStat(rev, out string) (*RevInfo, error) {
    	var log struct {
    		Logentry struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top