Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for errorsutil (0.41 sec)

  1. cmd/kubeadm/app/util/error.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"flag"
    	"fmt"
    	"os"
    	"strconv"
    	"strings"
    
    	"github.com/pkg/errors"
    
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    )
    
    const (
    	// DefaultErrorExitCode defines exit the code for failed action generally
    	DefaultErrorExitCode = 1
    	// PreFlightExitCode defines exit the code for preflight checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    
    	"github.com/pkg/errors"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/klog/v2"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/runtime/runtime.go

    */
    
    // Package runtime provides the kubeadm container runtime implementation.
    package runtime
    
    import (
    	"context"
    	"encoding/json"
    	"strings"
    	"time"
    
    	"github.com/pkg/errors"
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    	criapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/marshal.go

    	"github.com/pkg/errors"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	yamlserializer "k8s.io/apimachinery/pkg/runtime/serializer/yaml"
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    	utilyaml "k8s.io/apimachinery/pkg/util/yaml"
    	clientsetscheme "k8s.io/client-go/kubernetes/scheme"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/dryrun/dryrun.go

    limitations under the License.
    */
    
    package dryrun
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/postupgrade_test.go

    limitations under the License.
    */
    
    package upgrade
    
    import (
    	"os"
    	"path/filepath"
    	"regexp"
    	"strings"
    	"testing"
    
    	"github.com/pkg/errors"
    
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	"k8s.io/kubernetes/cmd/kubeadm/app/componentconfigs"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 11:40:04 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/cluster.go

    import (
    	"context"
    	"crypto/x509"
    	"fmt"
    	"path/filepath"
    	"strings"
    	"time"
    
    	"github.com/pkg/errors"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/wait"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/clientcmd"
    	certutil "k8s.io/client-go/util/cert"
    	"k8s.io/klog/v2"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager.go

    	"os"
    	"path/filepath"
    	"runtime"
    	"sort"
    	"sync"
    	"time"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    	pluginapi "k8s.io/kubelet/pkg/apis/deviceplugin/v1beta1"
    	"k8s.io/kubernetes/pkg/kubelet/checkpointmanager"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
    
    #include <string_view>
    
    #include "absl/status/status.h"
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/Diagnostics.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/error_util.h

    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_UTILS_ERROR_UTIL_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_UTILS_ERROR_UTIL_H_
    
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "xla/mlir/utils/error_util.h"
    #include "tensorflow/core/platform/status.h"
    
    // Error utilities for MLIR when interacting with code using Status returns.
    namespace mlir {
    
    // TensorFlow's Status is used for error reporting back to callers.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top