Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for resumption (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

        /**
         * Uses previously stored resumption data to enrich an existing execution request.
         * @param request The execution request that will be enriched.
         * @param rootProject The root project that is being built.
         */
        void applyResumptionData(MavenExecutionRequest request, MavenProject rootProject);
    
        /**
         * Removes previously stored resumption data.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/crypto/tls/63691.md

    The [QUICConn] type used by QUIC implementations includes new events
    reporting on the state of session resumption, and provides a way for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 211 bytes
    - Viewed (0)
  3. src/crypto/tls/quic_test.go

    		t.Fatalf("error during first connection handshake: %v", err)
    	}
    	if cli.conn.ConnectionState().DidResume {
    		t.Errorf("first connection unexpectedly used session resumption")
    	}
    
    	cli2 := newTestQUICClient(t, clientConfig)
    	cli2.conn.SetTransportParameters(nil)
    	srv2 := newTestQUICServer(t, serverConfig)
    	srv2.conn.SetTransportParameters(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionPersistenceException.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution;
    
    /**
     * This exception will be thrown when something fails while persisting build resumption data.
     * @see BuildResumptionDataRepository#persistResumptionData
     */
    public class BuildResumptionPersistenceException extends Exception {
        public BuildResumptionPersistenceException(String message, Throwable cause) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. src/runtime/preempt.go

    			// and we've now locked that in.
    			//
    			// TODO: It would be much better if we didn't
    			// leave it in _Gscan, but instead gently
    			// prevented its scheduling until resumption.
    			// Maybe we only use this to bump a suspended
    			// count and the scheduler skips suspended
    			// goroutines? That wouldn't be enough for
    			// {_Gsyscall,_Gwaiting} -> _Grunning. Maybe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    		t.Errorf("client ConnectionState contained unexpected OCSPResponse after resumption: wanted %v, got %v",
    			serverConfig.Certificates[0].OCSPStaple, ccs.OCSPResponse)
    	}
    	if !reflect.DeepEqual(ccs.SignedCertificateTimestamps, oldSCTs) {
    		t.Errorf("client ConnectionState contained unexpected SignedCertificateTimestamps after resumption: wanted %v, got %v",
    			oldSCTs, ccs.SignedCertificateTimestamps)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client.go

    		// Require DHE on resumption as it guarantees forward secrecy against
    		// compromise of the session ticket key. See RFC 8446, Section 4.2.9.
    		hello.pskModes = []uint8{pskModeDHE}
    	}
    
    	// Session resumption is not allowed if renegotiating because
    	// renegotiation is primarily used to allow a client to send a client
    	// certificate, which would be skipped if session resumption occurred.
    	if c.handshakes != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  8. src/crypto/tls/bogo_shim_test.go

    				log.Fatal("expected ECH to be accepted, but connection state shows it was not")
    			} else if i > 0 && *onResumeExpectECHAccepted && !cs.ECHAccepted {
    				log.Fatal("expected ECH to be accepted on resumption, but connection state shows it was not")
    			} else if i == 0 && !*expectECHAccepted && cs.ECHAccepted {
    				log.Fatal("did not expect ECH, but it was accepted")
    			}
    
    			if *expectHRR && !cs.testingOnlyDidHRR {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                    try {
                        buildResumptionDataRepository.persistResumptionData(rootProject, resumption);
                        result.setCanResume(true);
                    } catch (BuildResumptionPersistenceException e) {
                        logger.warn("Could not persist build resumption data", e);
                    }
                });
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    				t.Fatal(err)
    			}
    			if !cs.DidResume {
    				t.Error("expected resumption")
    			}
    
    			if serverVerifyPeerCertificates {
    				t.Error("VerifyPeerCertificates got called on the server on resumption")
    			}
    			if clientVerifyPeerCertificates {
    				t.Error("VerifyPeerCertificates got called on the client on resumption")
    			}
    			if !serverVerifyConnection {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top