Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 245 for Extract (0.25 sec)

  1. security/pkg/pki/util/keycertbundle.go

    func (b *KeyCertBundle) CertOptions() (*CertOptions, error) {
    	b.mutex.RLock()
    	defer b.mutex.RUnlock()
    	ids, err := ExtractIDs(b.cert.Extensions)
    	if err != nil {
    		return nil, fmt.Errorf("failed to extract id %v", err)
    	}
    	if len(ids) != 1 {
    		return nil, fmt.Errorf("expect single id from the cert, found %v", ids)
    	}
    
    	opts := &CertOptions{
    		Host:      ids[0],
    		Org:       b.cert.Issuer.Organization[0],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      none_ = CreateNoneValue(&builder_, fused_func_op_.getLoc());
      // Extract input to cifg gates via slicing the weight tensor
      SetWeightForInputToCellGate();
      SetWeightForInputToInputGate();
      SetWeightForInputToForgetGate();
      SetWeightForInputToOutputGate();
    
      // Extract recurrent to cifg gates via slicing the weight tensor
      SetWeightForRecurrentToCellGate();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. cmd/bucket-listobjects-handlers.go

    	if metadata {
    		checkObjMeta = func(name string, action policy.Action) (s3Err APIErrorCode) {
    			return checkRequestAuthType(ctx, r, action, bucket, name)
    		}
    	}
    	urlValues := r.Form
    
    	// Extract all the listBucketVersions query params to their native values.
    	prefix, marker, delimiter, maxkeys, encodingType, versionIDMarker, errCode := getListBucketObjectVersionsArgs(urlValues)
    	if errCode != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. cmd/signature-v4.go

    	if err != ErrNone {
    		return err
    	}
    
    	// Extract all the signed headers along with its values.
    	extractedSignedHeaders, errCode := extractSignedHeaders(signV4Values.SignedHeaders, r)
    	if errCode != ErrNone {
    		return errCode
    	}
    
    	cred, _, s3Err := checkKeyValid(r, signV4Values.Credential.accessKey)
    	if s3Err != ErrNone {
    		return s3Err
    	}
    
    	// Extract date, if not present throw error.
    	var date string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. cmd/handler-utils.go

    }
    
    func extractMetadata(ctx context.Context, mimesHeader ...textproto.MIMEHeader) (metadata map[string]string, err error) {
    	metadata = make(map[string]string)
    
    	for _, hdr := range mimesHeader {
    		// Extract all query values.
    		err = extractMetadataFromMime(ctx, hdr, metadata)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	// Set content-type to default value if it is not set.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

            }
    
            if (tlsVersions.contains(TLS_1_3)) {
              println("TLSv1.3 requires an external command run before first traffic is sent")
              println("Follow instructions at https://github.com/neykov/extract-tls-secrets for TLSv1.3")
              println("Pid: ${ProcessHandle.current().pid()}")
    
              Thread.sleep(10000)
            }
          }
          CommandLine -> {
            return ProcessBuilder(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            }
    
            matcher = DESCRIPTION_PATTERN.matcher(failureText);
            while (matcher.find()) {
                String problemStr = matcher.group(1);
                Problem problem = extract(problemStr);
                problems.add(problem);
                problemsNotChecked.add(problem);
            }
    
            matcher = RESOLUTION_PATTERN.matcher(failureText);
            if (!matcher.find()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_tls13.go

    		}
    		sharedKey = append(sharedKey, kyberShared...)
    	}
    	c.curveID = hs.serverHello.serverShare.group
    
    	earlySecret := hs.earlySecret
    	if !hs.usingPSK {
    		earlySecret = hs.suite.extract(nil, nil)
    	}
    
    	handshakeSecret := hs.suite.extract(sharedKey,
    		hs.suite.deriveSecret(earlySecret, "derived", nil))
    
    	clientSecret := hs.suite.deriveSecret(handshakeSecret,
    		clientHandshakeTrafficLabel, hs.transcript)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

      // other deivice subgraphs that need to be raised. We recur on
      // any nested blocks of "CPU" ops and skip raising "CPU" ops for the
      // remainder of that recursive call.
      auto extract = [&](const llvm::SetVector<Operation*>& partition_ops) -> void {
        if (partition_ops.empty()) return;
        InferenceDeviceType device =
            GetInferenceDeviceTypeForOp(partition_ops.front()).value();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

    import org.codelibs.fess.crawler.exception.ExecutionTimeoutException;
    import org.codelibs.fess.crawler.exception.ExtractException;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Extract a text by running a command.
     *
     * @author shinsuke
     *
     */
    public class CommandExtractor extends AbstractExtractor {
        private static final Logger logger = LoggerFactory.getLogger(CommandExtractor.class);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top