Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for expiring (0.3 sec)

  1. src/crypto/tls/common.go

    // the seed. If the connection was set to allow renegotiation via
    // Config.Renegotiation, or if the connections supports neither TLS 1.3 nor
    // Extended Master Secret, this function will return an error.
    //
    // Exporting key material without Extended Master Secret or TLS 1.3 was disabled
    // in Go 1.22 due to security issues (see the Security Considerations sections
    // of RFC 5705 and RFC 7627), but can be re-enabled with the GODEBUG setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    		t.Fatalf("want %q got %q, err=%v", "", string(s), err)
    	}
    	if _, err := buf.Peek(1); err != io.EOF {
    		t.Fatalf("want EOF got %v", err)
    	}
    
    	// Test for issue 3022, not exposing a reader's error on a successful Peek.
    	buf = NewReaderSize(dataAndEOFReader("abcd"), 32)
    	if s, err := buf.Peek(2); string(s) != "ab" || err != nil {
    		t.Errorf(`Peek(2) on "abcd", EOF = %q, %v; want "ab", nil`, string(s), err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    	if !nodePortAddresses.ContainsIPv4Loopback() {
    		localhostNodePorts = false
    	}
    	if localhostNodePorts {
    		// Set the route_localnet sysctl we need for exposing NodePorts on loopback addresses
    		// Refer to https://issues.k8s.io/90259
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    If you can find the key but Gradle does not, you can <<#sec:add-manual-keyring,manually add it>> to the keyring file.
    
    [[sec:local-keyring]]
    === Exporting keys for faster verification
    
    Gradle automatically downloads the required keys but this operation can be quite slow and requires everyone to download the keys.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

          }
        }
        connection.writePing()
        connection.shutdown(ErrorCode.PROTOCOL_ERROR)
        assertThat(connection.openStreamCount()).isEqualTo(1)
        connection.awaitPong() // Prevent the peer from exiting prematurely.
    
        // Verify the peer received what was expected.
        val synStream1 = peer.takeFrame()
        assertThat(synStream1.type).isEqualTo(Http2.TYPE_HEADERS)
        val pingFrame = peer.takeFrame()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    						check.error(e, MixedStructLit, "mixture of field:value and value elements in struct literal")
    						continue
    					}
    					key, _ := kv.Key.(*syntax.Name)
    					// do all possible checks early (before exiting due to errors)
    					// so we don't drop information on the floor
    					check.expr(nil, x, kv.Value)
    					if key == nil {
    						check.errorf(kv, InvalidLitField, "invalid field name %s in struct literal", kv.Key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // to *value and returns true; otherwise leaves *value unchanged and returns
    // false.
    // TODO(chandlerc): Find a better way to refactor flag and environment parsing
    // out of both gtest-port.cc and gtest.cc to avoid exporting this utility
    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    // Parses a bool/Int32/string from the environment variable
    // corresponding to the given Google Test flag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // to *value and returns true; otherwise leaves *value unchanged and returns
    // false.
    // TODO(chandlerc): Find a better way to refactor flag and environment parsing
    // out of both gtest-port.cc and gtest.cc to avoid exporting this utility
    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    // Parses a bool/Int32/string from the environment variable
    // corresponding to the given Google Test flag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    	modload.AllowMissingModuleImports()
    
    	// 'go get' no longer builds or installs packages, so there's nothing to do
    	// if there's no go.mod file.
    	// TODO(#40775): make modload.Init return ErrNoModRoot instead of exiting.
    	// We could handle that here by printing a different message.
    	modload.Init()
    	if !modload.HasModRoot() {
    		base.Fatalf("go: go.mod file not found in current directory or any parent directory.\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    
    At this stage, you can decide to either <<configuration_cache#config_cache:usage:ignore_problems, turn the problems into warnings>> and continue exploring how your build reacts to the configuration cache, or fix the problems at hand.
    
    Let's ignore the reported problem, and run the same build again twice to see what happens when reusing the cached problematic configuration:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top