Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Godebug (0.14 sec)

  1. src/cmd/go/alldocs.go

    //
    // The -module flag changes the module's path (the go.mod file's module line).
    //
    // The -godebug=key=value flag adds a godebug key=value line,
    // replacing any existing godebug lines with the given key.
    //
    // The -dropgodebug=key flag drops any existing godebug lines
    // with the given key.
    //
    // The -require=path@version and -droprequire=path flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    		{SHA1WithRSA, "x509: cannot verify signature: insecure algorithm SHA1-RSA (temporarily override with GODEBUG=x509sha1=1)"},
    		{ECDSAWithSHA1, "x509: cannot verify signature: insecure algorithm ECDSA-SHA1 (temporarily override with GODEBUG=x509sha1=1)"},
    		{MD2WithRSA, "x509: cannot verify signature: insecure algorithm 1"},
    		{-1, "x509: cannot verify signature: insecure algorithm -1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		arm64HasATOMICS = cpu.ARM64.HasATOMICS
    	}
    }
    
    // getGodebugEarly extracts the environment variable GODEBUG from the environment on
    // Unix-like operating systems and returns it. This function exists to extract GODEBUG
    // early before much of the runtime is initialized.
    func getGodebugEarly() string {
    	const prefix = "GODEBUG="
    	var env string
    	switch GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. 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)
  5. go.sum

    github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
    github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
    github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
    github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
    github.com/ledongthuc/pdf v0.0.0-20220302134840-0c2507a12d80/go.mod h1:imJHygn/1yfhB7XSJJKlFZKl/J+dCPAknuiaGOshXAs=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  6. src/crypto/x509/verify_test.go

    				}
    			}
    		}
    	}
    }
    
    func TestGoVerify(t *testing.T) {
    	// Temporarily enable SHA-1 verification since a number of test chains
    	// require it. TODO(filippo): regenerate test chains.
    	t.Setenv("GODEBUG", "x509sha1=1")
    
    	for _, test := range verifyTests {
    		t.Run(test.name, func(t *testing.T) {
    			testVerify(t, test, false)
    		})
    	}
    }
    
    func TestSystemVerify(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    			p.Incomplete = true
    		}
    	}
    
    	var debugModFromModinfo func(*modinfo.ModulePublic) *debug.Module
    	debugModFromModinfo = func(mi *modinfo.ModulePublic) *debug.Module {
    		version := mi.Version
    		if version == "" {
    			version = "(devel)"
    		}
    		dm := &debug.Module{
    			Path:    mi.Path,
    			Version: version,
    		}
    		if mi.Replace != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

          cat >>"$file" <<EOF
    KUBE_APISERVER_REQUEST_TIMEOUT_SEC: $(yaml-quote "${KUBE_APISERVER_REQUEST_TIMEOUT_SEC}")
    EOF
        fi
        # KUBE_APISERVER_GODEBUG (if set) controls the value of GODEBUG env var for kube-apiserver.
        if [ -n "${KUBE_APISERVER_GODEBUG:-}" ]; then
          cat >>"$file" <<EOF
    KUBE_APISERVER_GODEBUG: $(yaml-quote "${KUBE_APISERVER_GODEBUG}")
    EOF
        fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    		if strings.HasPrefix(d.Text, "//go:debug") {
    			key, _, err := load.ParseGoDebug(d.Text)
    			if err != nil && err != load.ErrNotGoDebug {
    				msg = fmt.Appendf(msg, "%s: invalid //go:debug: %v\n", d.Pos, err)
    				continue
    			}
    			if pos, ok := seen[key]; ok {
    				msg = fmt.Appendf(msg, "%s: repeated //go:debug for %v\n\t%s: previous //go:debug\n", d.Pos, key, pos)
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public void SweeperPool$Sweeper(SweeperPool, int); public void run(); public synchronized void start(); public synchronized void stop(); private final void debug(String); private void runSweep(); } org/codehaus/plexus/util/SweeperPool.class package org.codehaus.plexus.util; public synchronized class SweeperPool { private static final boolean DEBUG = 0; private transient SweeperPool$Sweeper sweeper; private transient int maxSize; private transient int minSize; private int triggerSize; private java.util.ArrayList...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
Back to top