Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for NodeLost (0.12 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/codehost.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package codehost defines the interface implemented by a code hosting source,
    // along with support code for use by implementations.
    package codehost
    
    import (
    	"bytes"
    	"context"
    	"crypto/sha256"
    	"fmt"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    	"sync"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/modfetch/coderepo.go

    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch/codehost"
    
    	"golang.org/x/mod/modfile"
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/semver"
    	modzip "golang.org/x/mod/zip"
    )
    
    // A codeRepo implements modfetch.Repo using an underlying codehost.Repo.
    type codeRepo struct {
    	modPath string
    
    	// code is the repository containing this module.
    	code codehost.Repo
    	// codeRoot is the import path at the root of code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/repo.go

    	if err != nil {
    		return nil, err
    	}
    	return newCodeRepo(code, rr.Root, path)
    }
    
    func lookupCodeRepo(ctx context.Context, rr *vcs.RepoRoot) (codehost.Repo, error) {
    	code, err := codehost.NewRepo(ctx, rr.VCS.Cmd, rr.Repo)
    	if err != nil {
    		if _, ok := err.(*codehost.VCSError); ok {
    			return nil, err
    		}
    		return nil, fmt.Errorf("lookup %s: %v", rr.Root, err)
    	}
    	return code, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/modfetch/proxy.go

    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"net/url"
    	"path"
    	pathpkg "path"
    	"path/filepath"
    	"strings"
    	"sync"
    	"time"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/modfetch/codehost"
    	"cmd/go/internal/web"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/semver"
    )
    
    var HelpGoproxy = &base.Command{
    	UsageLine: "goproxy",
    	Short:     "module proxy protocol",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/internal/modfetch/coderepo_test.go

    			}
    		})
    	}
    }
    
    // fixedTagsRepo is a fake codehost.Repo that returns a fixed list of tags
    type fixedTagsRepo struct {
    	tags []string
    	codehost.Repo
    }
    
    func (ch *fixedTagsRepo) Tags(ctx context.Context, prefix string) (*codehost.Tags, error) {
    	tags := &codehost.Tags{}
    	for _, t := range ch.tags {
    		tags.List = append(tags.List, codehost.Tag{Name: t})
    	}
    	return tags, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top