Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for fromlen (0.18 sec)

  1. operator/pkg/compare/compare.go

    	for name, obj := range iom {
    		isRenamed := false
    		for fromPat, toPat := range rnm {
    			fromRe, err := buildResourceRegexp(strings.TrimSpace(fromPat))
    			if err != nil {
    				return nil, fmt.Errorf("error building the regexp from "+
    					"rename-from string: %v, error: %v", fromPat, err)
    			}
    			if fromRe.MatchString(name) {
    				fromList := strings.Split(name, ":")
    				if len(fromList) != 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

      if (is_inliner_run) {
        pm_after_freezing_variables.addPass(mlir::createInlinerPass());
      }
      if (run_tf_to_stablehlo) {
        // AddLegalizeTFToStablehloPasses expects frozen TF variables when
        // legalizing to stablehlo.constant.
        AddTFToStablehloPasses(pm_after_freezing_variables, input_arg_shapes);
      }
    
      if (deserialize_xla_call_module) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry.go

    		meshConfig:             env.Mesh(),
    		computedMetricsFilters: map[metricsKey]any{},
    		computedLoggingConfig:  map[loggingKey][]LoggingConfig{},
    	}
    
    	fromEnv := env.List(gvk.Telemetry, NamespaceAll)
    	sortConfigByCreationTime(fromEnv)
    	for _, config := range fromEnv {
    		telemetry := Telemetry{
    			Name:      config.Name,
    			Namespace: config.Namespace,
    			Spec:      config.Spec.(*tpb.Telemetry),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.h

    // tensors with fill op.
    std::unique_ptr<OperationPass<ModuleOp>> CreateUnfoldLargeSplatConstantPass();
    
    // Creates a pass that adds control dependencies to keep the relative execution
    // order of operations with side effects frozen.
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePinOpsWithSideEffectsPass();
    
    // Legalize TensorList Ops iff all of them are supported.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeTensorListPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. tensorflow/cc/tools/freeze_saved_model.cc

          StatusOr<string> handle_name = GetHandleNameIfNeedsToFreeze(
              name_to_node_map, node.name(), variable_node_names);
          if (handle_name.ok()) {
            // Identity node that is forwarding the value of a frozen
            // VarhandleOp. We ensure that the dtype matches of the variable dtype.
            NodeDef* new_node = frozen_graph_def->add_node();
            *new_node = node;
            (*new_node->mutable_attr())["T"] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/testing/quick/quick.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package quick implements utility functions to help with black box testing.
    //
    // The testing/quick package is frozen and is not accepting new features.
    package quick
    
    import (
    	"flag"
    	"fmt"
    	"math"
    	"math/rand"
    	"reflect"
    	"strings"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/HashCode.java

       * are interpreted in little endian order.
       *
       * @since 15.0 (since 12.0 in HashCodes)
       */
      public static HashCode fromLong(long hash) {
        return new LongHashCode(hash);
      }
    
      private static final class LongHashCode extends HashCode implements Serializable {
        final long hash;
    
        LongHashCode(long hash) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/HashCode.java

       * are interpreted in little endian order.
       *
       * @since 15.0 (since 12.0 in HashCodes)
       */
      public static HashCode fromLong(long hash) {
        return new LongHashCode(hash);
      }
    
      private static final class LongHashCode extends HashCode implements Serializable {
        final long hash;
    
        LongHashCode(long hash) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  9. cmd/s3-zip-handlers.go

    		files, err := zipindex.ReadDir(b[len(b)-size:], objSize, nil)
    		if err == nil {
    			return files, gr.ObjInfo, nil
    		}
    		var terr zipindex.ErrNeedMoreData
    		if errors.As(err, &terr) {
    			size = int(terr.FromEnd)
    			if size <= 0 || size > 100<<20 {
    				return nil, ObjectInfo{}, errors.New("zip directory too large")
    			}
    		} else {
    			return nil, ObjectInfo{}, err
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/net/smtp/smtp.go

    // It also implements the following extensions:
    //
    //	8BITMIME  RFC 1652
    //	AUTH      RFC 2554
    //	STARTTLS  RFC 3207
    //
    // Additional extensions may be handled by clients.
    //
    // The smtp package is frozen and is not accepting new features.
    // Some external packages provide more functionality. See:
    //
    //	https://godoc.org/?q=smtp
    package smtp
    
    import (
    	"crypto/tls"
    	"encoding/base64"
    	"errors"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top