Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 393 for Extract (0.11 sec)

  1. src/crypto/tls/handshake_server_tls13.go

    	}
    
    	if err := hs.sendDummyChangeCipherSpec(); err != nil {
    		return err
    	}
    
    	earlySecret := hs.earlySecret
    	if earlySecret == nil {
    		earlySecret = hs.suite.extract(nil, nil)
    	}
    	hs.handshakeSecret = hs.suite.extract(hs.sharedKey,
    		hs.suite.deriveSecret(earlySecret, "derived", nil))
    
    	clientSecret := hs.suite.deriveSecret(hs.handshakeSecret,
    		clientHandshakeTrafficLabel, hs.transcript)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/vcs.go

    	branches      func(remote string) []string                                                        // cmd to list local branches
    	branchRE      *lazyregexp.Regexp                                                                  // regexp to extract branch names from output of tags cmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/cache/secretcache.go

    	now := time.Now()
    	var certExpireTime time.Time
    	if certExpireTime, err = nodeagentutil.ParseCertAndGetExpiryTimestamp(certChain); err != nil {
    		cacheLog.Errorf("failed to extract expiration time in the certificate loaded from file: %v", err)
    		return nil, fmt.Errorf("failed to extract expiration time in the certificate loaded from file: %v", err)
    	}
    
    	return &security.SecretItem{
    		CertificateChain: certChain,
    		PrivateKey:       keyPEM,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/productpage.py

    # but you can just manually forward the headers if you prefer.
    #
    # The OpenTelemetry example here is very basic. It only forwards headers. It is
    # intended as a reference to help people get started, eg how to create spans,
    # extract/inject context, etc.
    
    
    propagator = B3MultiFormat()
    set_global_textmap(B3MultiFormat())
    provider = TracerProvider()
    # Sets the global default tracer provider
    trace.set_tracer_provider(provider)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. internal/jwt/parser.go

    //
    // This method parses the token but doesn't validate the signature. It's only
    // ever useful in cases where you know the signature is valid (because it has
    // been checked previously in the stack) and you want to extract values from
    // it.
    func ParseUnverifiedStandardClaims(token []byte, claims *StandardClaims, buf []byte) (*SigningMethodHMAC, error) {
    	if bytes.Count(token, []byte(".")) != 2 {
    		return nil, jwtgo.ErrSignatureInvalid
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      //   %dot = "mhlo.dot_general"(%before, %rhs : BxCxZ) : BxY2xZ
      //   %after = "mhlo.reshape"(%dot) : BxY1xZ
      // to:
      //   %dot : "mhlo.dot_general"(%lhs : BxY1xC, %rhs : BxCxZ) : BxY1xZ
    
      // Extract B, Y1, C from %lhs.
      ArrayRef<int64_t> shape_lhs =
          reshape_before.getOperand().getType().getShape();
      ArrayRef<int64_t> shape_b = shape_lhs.take_front(batch_dims_count);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

    }
    
    def ExtractHeadTailOutsideCompilationPass : Pass<"tf-extract-head-tail-outside-compilation", "ModuleOp"> {
      let summary = "Extracts head or tail outside compilation to separate host launches before/after device cluster.";
    
      let description = [{
        This pass extracts a CPU computation cluster with `_xla_outside_compilation`
        annotation from the head or tail of a Device cluster.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

            writeOnly.getters.size() == 0
            writeOnly.setters.size() == 1
        }
    
        def "extracts property names"() {
            expect:
            def details = ClassInspector.inspect(PropNames)
    
            details.propertyNames == ['class', 'metaClass', 'a', 'b', 'URL', 'url', '_A'] as Set
        }
    
        def "extracts properties of a Groovy interface"() {
            expect:
            def details = ClassInspector.inspect(SomeInterface)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/build_read.go

    			}
    
    			doc := spec.Doc
    			if doc == nil && len(d.Specs) == 1 {
    				doc = d.Doc
    			}
    			info.imports = append(info.imports, fileImport{path, spec.Pos(), doc})
    		}
    	}
    
    	// Extract directives.
    	for _, group := range info.parsed.Comments {
    		if group.Pos() >= info.parsed.Package {
    			break
    		}
    		for _, c := range group.List {
    			if strings.HasPrefix(c.Text, "//go:") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. cmd/auth-handler.go

    	var region string
    	if action == policy.CreateBucketAction {
    		// To extract region from XML in request body, get copy of request body.
    		payload, err := io.ReadAll(io.LimitReader(r.Body, maxLocationConstraintSize))
    		if err != nil {
    			authZLogIf(ctx, err, logger.ErrorKind)
    			return ErrMalformedXML
    		}
    
    		// Populate payload to extract location constraint.
    		r.Body = io.NopCloser(bytes.NewReader(payload))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top