Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for zeroing (0.3 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

    }
    
    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
      // as well as providing an identifier for logging purposes. A good name should be descriptive of
      // the associated expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      %arg0_reshaped = "tf.Reshape"(%arg0, %arg0_shape) : (tensor<8x4xf32>, tensor<3xi32>) -> tensor<1x8x4xf32>
      %zeroi2 = "tf.Const"() {value = dense<0> : tensor<2xi32>} : () -> tensor<2xi32>
      %axis = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
      %start_indices = "tf.ConcatV2"(%index_in_list, %zeroi2, %axis) : (tensor<1xi32>, tensor<2xi32>, tensor<i32>) -> tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    }
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
      // as well as providing an identifier for logging purposes. A good name should be descriptive of
      // the associated expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    --
    Dependency verification is, by nature, an inconvenient feature to use.
    It means that whenever you're going to update a dependency, builds are likely to fail.
    It means that merging branches are going to be harder because each branch can have different dependencies.
    It means that you will be tempted to switch it off.
    
    So why should you bother?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    }
    
    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    type MatchCondition struct {
    	// Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    	// as well as providing an identifier for logging purposes. A good name should be descriptive of
    	// the associated expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // cluster rather than just the inputs to the node to prevent the cluster
      // still being combined in cases where the 'to' cluster has multiple
      // dependencies on the 'from' cluster and another dependency leads to a
      // merging of the clusters.
      //
      // TODO(b/117085735): We probably want to handle the reciprocal of this case
      // where a cluster is producing data for multiple devices.
      for (const auto& in_id :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    }
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    type MatchCondition struct {
    	// Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    	// as well as providing an identifier for logging purposes. A good name should be descriptive of
    	// the associated expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    func is8BitInt(t *types.Type) bool {
    	return t.Size() == 1 && t.IsInteger()
    }
    
    func isPtr(t *types.Type) bool {
    	return t.IsPtrShaped()
    }
    
    // mergeSym merges two symbolic offsets. There is no real merging of
    // offsets, we just pick the non-nil one.
    func mergeSym(x, y Sym) Sym {
    	if x == nil {
    		return y
    	}
    	if y == nil {
    		return x
    	}
    	panic(fmt.Sprintf("mergeSym with two non-nil syms %v %v", x, y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	}
    	args := str.StringList(execCmd, a.Deps[0].BuiltTarget(), testlogArg, panicArg, fuzzArg, coverdirArg, testArgs)
    
    	if testCoverProfile != "" {
    		// Write coverage to temporary profile, for merging later.
    		for i, arg := range args {
    			if strings.HasPrefix(arg, "-test.coverprofile=") {
    				args[i] = "-test.coverprofile=" + coverProfTempFile(a)
    			}
    		}
    	}
    
    	if cfg.BuildN || cfg.BuildX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	DuplicatedDomains = monitoring.NewGauge(
    		"pilot_vservice_dup_domain",
    		"Virtual services with dup domains.",
    	)
    
    	// DuplicatedSubsets tracks duplicate subsets that we rejected while merging multiple destination rules for same host
    	DuplicatedSubsets = monitoring.NewGauge(
    		"pilot_destrule_subsets",
    		"Duplicate subsets across destination rules for same host",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top