Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for keystores (0.32 sec)

  1. src/crypto/tls/handshake_messages.go

    				})
    			})
    		}
    	}
    	if len(m.keyShares) > 0 {
    		// RFC 8446, Section 4.2.8
    		if echInner {
    			echOuterExts = append(echOuterExts, extensionKeyShare)
    		} else {
    			exts.AddUint16(extensionKeyShare)
    			exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    				exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    					for _, ks := range m.keyShares {
    						exts.AddUint16(uint16(ks.group))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    // During allocation, we keep track of the dominator of all restores of v.
    // The spill of v must dominate that block. The spill must also be issued at
    // a point where v is still in a register.
    //
    // To find the right place, start at b, the block which dominates all restores.
    //  - If b is v.Block, then issue the spill right after v.
    //    It is known to be in a register at that point, and dominates any restores.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    		random:             make([]byte, 32),
    		supportedVersions:  []uint16{VersionTLS13},
    		cipherSuites:       []uint16{TLS_CHACHA20_POLY1305_SHA256},
    		compressionMethods: []uint8{compressionNone},
    		keyShares:          []keyShare{{group: X25519, data: pk.PublicKey().Bytes()}},
    		supportedCurves:    []CurveID{CurveP256},
    	}
    	testClientHelloFailure(t, testConfig, clientHello, "client sent key share for group it does not support")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def execTimeValue = property.calculateExecutionTimeValue()
    
            then:
            assertCollectionIs(toImmutable(['2', '3', '4']), execTimeValue.toValue().get())
        }
    
        def "property restores undefined-safe items"() {
            given:
            property.add("1")
            property.appendAll(supplierWithChangingExecutionTimeValues(List, value, value))
            property.add("3")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *
         * ```java
         * TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(
         * TrustManagerFactory.getDefaultAlgorithm());
         * trustManagerFactory.init((KeyStore) null);
         * TrustManager[] trustManagers = trustManagerFactory.getTrustManagers();
         * if (trustManagers.length != 1 || !(trustManagers[0] instanceof X509TrustManager)) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      OpSet target_opset_;
    };
    
    // To calculate per-channel scale and offset, weight of depthwise was reshaped
    // to [H, W, 1, InxMul]. After scale and offset has been calculated, this
    // pattern gets called and restores the weight of depthwise back
    // into [H, W, In, Mul]
    class RestoreWeightShapePattern
        : public OpRewritePattern<TF::PartitionedCallOp> {
      using OpRewritePattern<TF::PartitionedCallOp>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      static bool ShouldRunTest(const TestInfo* test_info) {
        return test_info->should_run();
      }
    
      // Shuffles the tests in this test case.
      void ShuffleTests(internal::Random* random);
    
      // Restores the test order to before the first shuffle.
      void UnshuffleTests();
    
      // Name of the test case.
      std::string name_;
      // Name of the parameter type, or NULL if this is not a typed or a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      static bool ShouldRunTest(const TestInfo* test_info) {
        return test_info->should_run();
      }
    
      // Shuffles the tests in this test case.
      void ShuffleTests(internal::Random* random);
    
      // Restores the test order to before the first shuffle.
      void UnshuffleTests();
    
      // Name of the test case.
      std::string name_;
      // Name of the parameter type, or NULL if this is not a typed or a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            def execTimeValue = property.calculateExecutionTimeValue()
    
            then:
            execTimeValue.toValue().isMissing()
        }
    
        def "property restores undefined-safe items"() {
            given:
            property.put("a", "1")
            property.insertAll(supplierWithChangingExecutionTimeValues(Map, value, value))
            property.put("c", "3")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			"containerName", containerSpec.Name, "containerID", containerID.String())
    	}
    
    	return int64(metav1.Now().Sub(start.Time).Seconds())
    }
    
    // restoreSpecsFromContainerLabels restores all information needed for killing a container. In some
    // case we may not have pod and container spec when killing a container, e.g. pod is deleted during
    // kubelet restart.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top