Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 210 for net (0.03 sec)

  1. src/net/http/h2_bundle.go

    	"fmt"
    	"io"
    	"io/fs"
    	"log"
    	"math"
    	"math/bits"
    	mathrand "math/rand"
    	"net"
    	"net/http/httptrace"
    	"net/textproto"
    	"net/url"
    	"os"
    	"reflect"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	"golang.org/x/net/http/httpguts"
    	"golang.org/x/net/http2/hpack"
    	"golang.org/x/net/idna"
    )
    
    // The HTTP protocols are defined in terms of ASCII, not Unicode. This file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/os/exec/exec_test.go

    // license that can be found in the LICENSE file.
    
    // Use an external test to avoid os/exec -> net/http -> crypto/x509 -> os/exec
    // circular dependency on non-cgo darwin.
    
    package exec_test
    
    import (
    	"bufio"
    	"bytes"
    	"context"
    	"errors"
    	"flag"
    	"fmt"
    	"internal/poll"
    	"internal/testenv"
    	"io"
    	"log"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"os"
    	"os/exec"
    	"os/exec/internal/fdtest"
    	"os/signal"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle-handlers_test.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"encoding/xml"
    	"net/http"
    	"net/http/httptest"
    	"testing"
    
    	"github.com/minio/minio/internal/auth"
    )
    
    // Test S3 Bucket lifecycle APIs with wrong credentials
    func TestBucketLifecycleWrongCredentials(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

     * under the License.
     */
    package org.apache.maven.exception;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.IOException;
    import java.net.ConnectException;
    import java.net.UnknownHostException;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.IdentityHashMap;
    import java.util.List;
    import java.util.Set;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	// Analysis driver should treat the URL as "#"+Category.
    	//
    	// The URL may be relative. If so, the base URL is that of the
    	// Analyzer that produced the diagnostic;
    	// see https://pkg.go.dev/net/url#URL.ResolveReference.
    	URL string
    
    	// SuggestedFixes is an optional list of fixes to address the
    	// problem described by the diagnostic, each one representing
    	// an alternative strategy; at most one may be applied.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. cmd/generic-handlers.go

    package cmd
    
    import (
    	"fmt"
    	"net"
    	"net/http"
    	"path"
    	"path/filepath"
    	"runtime/debug"
    	"strings"
    	"sync/atomic"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio-go/v7/pkg/s3utils"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/grid"
    	xnet "github.com/minio/pkg/v3/net"
    	"golang.org/x/exp/maps"
    	"golang.org/x/exp/slices"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. cmd/handler-utils.go

    import (
    	"context"
    	"errors"
    	"fmt"
    	"net/http"
    	"net/textproto"
    	"regexp"
    	"strings"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/handlers"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/mcontext"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    const (
    	copyDirective    = "COPY"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status.go

    	}
    	if nodeIP.IsUnspecified() {
    		return fmt.Errorf("nodeIP can't be an all zeros address")
    	}
    
    	addrs, err := net.InterfaceAddrs()
    	if err != nil {
    		return err
    	}
    	for _, addr := range addrs {
    		var ip net.IP
    		switch v := addr.(type) {
    		case *net.IPNet:
    			ip = v.IP
    		case *net.IPAddr:
    			ip = v.IP
    		}
    		if ip != nil && ip.Equal(nodeIP) {
    			return nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/util/util.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"bytes"
    	"fmt"
    	"net"
    	"net/netip"
    	"sort"
    	"strconv"
    	"strings"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. pkg/config/security/security.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package security
    
    import (
    	"fmt"
    	"net/netip"
    	"net/url"
    	"strconv"
    	"strings"
    	"unicode"
    
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top