Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 431 for Extract (4.26 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. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

         */
        val stackTracingFailure: Failure? = null,
        val documentationSection: DocumentationSection? = null
    )
    
    
    // TODO:configuration-cache extract interface and move enum back to :configuration-cache
    enum class DocumentationSection(val anchor: String) {
        NotYetImplemented("config_cache:not_yet_implemented"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

            return new TestFile(resource.toURI());
        }
    
        /**
         * Extracts the contents of the jar file containing the given resource so that an (unzipped) file pointing to the
         * requested resources within the resource jar can be returned.
         *
         * This method will extract the jar to a directory named {@link #EXTRACTED_RESOURCES_DIR} in the parent of the root
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/locality_test.go

    		if inErr != nil {
    			return inErr
    		}
    		got := map[string]int{}
    		for _, r := range result.Responses {
    			// Hostname will take form of svc-v1-random. We want to extract just 'svc'
    			parts := strings.SplitN(r.Hostname, "-", 2)
    			if len(parts) < 2 {
    				return fmt.Errorf("unexpected hostname: %v", r)
    			}
    			gotHost := parts[0]
    			got[gotHost]++
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. security/pkg/server/ca/authenticate/oidc.go

    	// in future trust domain may use another field as a standard is defined.
    	if err := idToken.Claims(&sa); err != nil {
    		return nil, fmt.Errorf("failed to extract claims from ID token: %v", err)
    	}
    	if !strings.HasPrefix(sa.Sub, "system:serviceaccount") {
    		return nil, fmt.Errorf("invalid sub %v", sa.Sub)
    	}
    	parts := strings.Split(sa.Sub, ":")
    	ns := parts[2]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/fake_quant_utils.h

        auto res = tf_op.getOutputs();
        if (!res.hasOneUse() || isa<QuantizeOp>(*res.user_begin())) {
          return failure();
        }
    
        // Extract the min/max constant values from the operands. We also consider
        // a special case that there are tf.Identity ops between the min/max
        // constants and the tf.FakeQuantWithMinMaxVarsOp.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. 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)
  10. 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 (1)
Back to top