Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for INTERNAL (0.21 sec)

  1. src/net/http/server.go

    // license that can be found in the LICENSE file.
    
    // HTTP server. See RFC 7230 through 7235.
    
    package http
    
    import (
    	"bufio"
    	"bytes"
    	"context"
    	"crypto/tls"
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io"
    	"log"
    	"math/rand"
    	"net"
    	"net/textproto"
    	"net/url"
    	urlpkg "net/url"
    	"path"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    			podResizeStatus = resizeStatus
    		}
    	}
    	return podResizeStatus
    }
    
    // generateAPIPodStatus creates the final API pod status for a pod, given the
    // internal pod status. This method should only be called from within sync*Pod methods.
    func (kl *Kubelet) generateAPIPodStatus(pod *v1.Pod, podStatus *kubecontainer.PodStatus, podIsTerminal bool) v1.PodStatus {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	labelNodeRolePrefix = "node-role.kubernetes.io/"
    
    	// nodeLabelRole specifies the role of a node
    	nodeLabelRole = "kubernetes.io/role"
    )
    
    // AddHandlers adds print handlers for default Kubernetes types dealing with internal versions.
    func AddHandlers(h printers.PrintHandler) {
    	podColumnDefinitions := []metav1.TableColumnDefinition{
    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    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. go.sum

    github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=
    github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
    github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8=
    github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    	"net/url"
    	"path"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/hash/sha256"
    	xhttp "github.com/minio/minio/internal/http"
    	ioutilx "github.com/minio/minio/internal/ioutil"
    )
    
    // Type to capture different modifications to API request to simulate failure cases.
    type Fault int
    
    const (
    	None Fault = iota
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	"compress/gzip"
    	"compress/zlib"
    	"context"
    	"crypto/tls"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"log"
    	"math/rand"
    	"mime/multipart"
    	"net"
    	. "net/http"
    	"net/http/httptest"
    	"net/http/httptrace"
    	"net/http/httputil"
    	"net/http/internal"
    	"net/http/internal/testcert"
    	"net/url"
    	"os"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    		// 'x-envoy-retry-grpc-on' supported policies:
    		// https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter#x-envoy-retry-grpc-on
    		"cancelled",
    		"deadline-exceeded",
    		"internal",
    		"resource-exhausted",
    		"unavailable",
    	)
    
    	// golang supported methods: https://golang.org/src/net/http/method.go
    	supportedMethods = sets.New(
    		http.MethodGet,
    		http.MethodHead,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    class Translator {
     public:
      // Translates the given MLIR module into TFLite FlatBuffer format and returns
      // the serialized output. Returns std::nullopt on unsupported, invalid inputs
      // or internal error.
      static std::optional<std::string> Translate(
          ModuleOp module, const toco::TocoFlags& toco_flags,
          const std::unordered_set<std::string>& tags,
          OpOrArgNameMapper* op_or_arg_name_mapper,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. samples/addons/grafana.yaml

    etheus","uid":"$datasource"},"expr":"sum by (type) (\n  pilot_total_xds_rejects{}\n)","legendFormat":"Rejected Config ({{type}})"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"pilot_total_xds_internal_errors{}","legendFormat":"Internal Errors"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"pilot_xds_push_context_errors{}","legendFormat":"Push Context Errors"}],"title":"Push Errors","type":"timeseries"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Count...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top