Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 134 for BOGUS (0.03 sec)

  1. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

                ".42.42.42.42",
                ".42.42.42",
                "...42.42.42.42",
                "42.42.42.-0",
                "42.42.42.+0",
                ".",
                "...",
                "bogus",
                "bogus.com",
                "192.168.0.1.com",
                "12345.67899.-54321.-98765",
                "257.0.0.0",
                "42.42.42.-42",
                "42.42.42.ab",
                "3ffe::1.net",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. pilot/pkg/trustbundle/trustbundle_test.go

    	}
    	trustedCerts = tb.GetTrustBundle()
    	if !slices.Equal(trustedCerts, result) || cbCounter != 3 {
    		t.Errorf("duplicate multicert update failed. Callback value is %v", cbCounter)
    	}
    
    	// Try added one good cert, one bogus Cert
    	// Verify Update should not go through and no change to cb
    	err = tb.UpdateTrustAnchor(&TrustAnchorUpdate{
    		TrustAnchorConfig: TrustAnchorConfig{Certs: []string{malformedCert}},
    		Source:            SourceIstioCA,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/compress/flate/huffman_code.go

    	// saves a little bit of work in some small cases
    	if maxBits > n-1 {
    		maxBits = n - 1
    	}
    
    	// Create information about each of the levels.
    	// A bogus "Level 0" whose sole purpose is so that
    	// level1.prev.needed==0.  This makes level1.nextPairFreq
    	// be a legitimate value that never gets chosen.
    	var levels [maxBitsLimit]levelInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. src/runtime/os_netbsd.go

    //go:nosplit
    func raise(sig uint32) {
    	lwp_kill(lwp_self(), int(sig))
    }
    
    func signalM(mp *m, sig int) {
    	lwp_kill(int32(mp.procid), sig)
    }
    
    // sigPerThreadSyscall is only used on linux, so we assign a bogus signal
    // number.
    const sigPerThreadSyscall = 1 << 31
    
    //go:nosplit
    func runPerThreadSyscall() {
    	throw("runPerThreadSyscall only valid on linux")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Cut.java

      private static final class BelowAll extends Cut<Comparable<?>> {
        private static final BelowAll INSTANCE = new BelowAll();
    
        private BelowAll() {
          /*
           * No code ever sees this bogus value for `endpoint`: This class overrides both methods that
           * use the `endpoint` field, compareTo() and endpoint(). Additionally, the main implementation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/net/http/clientserver_test.go

    // writing more than they declared. This test does not test whether
    // the transport deals with too much data, though, since the server
    // doesn't make it possible to send bogus data. For those tests, see
    // transport_test.go (for HTTP/1) or x/net/http2/transport_test.go
    // (for HTTP/2).
    func TestHandlerWritesTooMuch(t *testing.T) { run(t, testHandlerWritesTooMuch) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  7. pkg/istio-agent/agent_test.go

    			a.Security.FileMountedCerts = true
    			return a
    		}).Check(t, cfg.GetRootResourceName(), cfg.GetResourceName())
    	})
    	t.Run("File mounted certs with bogus token path", func(t *testing.T) {
    		// User sets FileMountedCerts and a bogus token path.
    		// They also need to set ISTIO_META_TLS_CLIENT* to specify the file paths.
    		// CA communication is disabled. mTLS is used for authentication with Istiod.
    		dir := mktemp()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/runtime/os_darwin.go

    		executablePath = executablePath[len(prefix):]
    	}
    }
    
    func signalM(mp *m, sig int) {
    	pthread_kill(pthread(mp.procid), uint32(sig))
    }
    
    // sigPerThreadSyscall is only used on linux, so we assign a bogus signal
    // number.
    const sigPerThreadSyscall = 1 << 31
    
    //go:nosplit
    func runPerThreadSyscall() {
    	throw("runPerThreadSyscall only valid on linux")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    func parseProxy(proxy string) (*url.URL, error) {
    	if proxy == "" {
    		return nil, nil
    	}
    
    	proxyURL, err := url.Parse(proxy)
    	if err != nil || proxyURL.Scheme == "" || proxyURL.Host == "" {
    		// proxy was bogus. Try prepending "http://" to it and
    		// see if that parses correctly. If not, we fall
    		// through and complain about the original one.
    		if proxyURL, err := url.Parse("http://" + proxy); err == nil {
    			return proxyURL, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/mime/mediatype.go

    		if s[i] != '%' {
    			i++
    			continue
    		}
    		percents++
    		if i+2 >= len(s) || !ishex(s[i+1]) || !ishex(s[i+2]) {
    			s = s[i:]
    			if len(s) > 3 {
    				s = s[0:3]
    			}
    			return "", fmt.Errorf("mime: bogus characters after %%: %q", s)
    		}
    		i += 3
    	}
    	if percents == 0 {
    		return s, nil
    	}
    
    	t := make([]byte, len(s)-2*percents)
    	j := 0
    	for i := 0; i < len(s); {
    		switch s[i] {
    		case '%':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top