Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 243 for Extract (0.38 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

      pm.addPass(mlir::TF::CreateGuaranteeAllFuncsOneUsePass());
      pm.addPass(mlir::TF::CreateTFShapeInferencePass());
      // For V1 compatibility, we process a module where the graph does not have
      // feeds and fetched. We extract first the TPU computation in a submodule,
      // where it'll be in a function with args and returned values, much more
      // like a TF v2 module. We can then run the usual pipeline on this nested
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      auto output_type = tf_matrix_diag_v2_or_v3_op.getOutput().getType();
    
      // Extract k constant tensor and check value = 0.
      ElementsAttr k;
      if (!matchPattern(tf_matrix_diag_v2_or_v3_op.getK(), m_Constant(&k)))
        return false;
      if (ExtractSingleElementAsInteger(k).getInt() != 0) return false;
    
      // Extract num_rows constant tensor and check value = -1.
      ElementsAttr num_rows;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

    import org.codelibs.fess.crawler.entity.ExtractData;
    import org.codelibs.fess.crawler.exception.ExtractException;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import com.google.common.base.Charsets;
    
    /**
     * Extract a text by using external http server.
     *
     * @author shinsuke
     *
     */
    public class ApiExtractor extends AbstractExtractor {
    
        private static final Logger logger = LoggerFactory.getLogger(ApiExtractor.class);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            // Possible solutions
            failureDescriptionContains("1. Extract artifact metadata and annotate with @Input.")
            failureDescriptionContains("2. Extract artifact files and annotate with @InputFiles.")
    
            // Documentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top