Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 200 for reflectively (0.36 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type MicroTime struct {
    	time.Time `protobuf:"-"`
    }
    
    // DeepCopy returns a deep-copy of the MicroTime value.  The underlying time.Time
    // type is effectively immutable in the time API, so it is safe to
    // copy-by-assign, despite the presence of (unexported) Pointer fields.
    func (t *MicroTime) DeepCopyInto(out *MicroTime) {
    	*out = *t
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    // will be the qualified method name (e.g., "T.m").
    //
    // A method expression (T.M) is represented as an OMETHEXPR node,
    // in which n.Left and n.Right point to the type and method, respectively.
    // Each distinct mention of a method expression in the source code
    // constructs a fresh node.
    //
    // A method value (t.M) is represented by ODOTMETH/ODOTINTER
    // when it is called directly and by OMETHVALUE otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

        return APInt(storage_bit_width_, signless_result);
      }
    
      // Keep both APFloat and double versions of the quantization parameters
      // around since they will be used in generic and specialized arithmetic,
      // respectively.
      const APFloat scale_;
      const APFloat zero_point_;
      const APFloat clamp_min_;
      const APFloat clamp_max_;
    
      const double scale_double_;
      const double zero_point_double_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/generated.proto

    // .state.terminated.exitCode for each app container and init container status,
    // represented by the .status.containerStatuses and .status.initContainerStatuses
    // fields in the Pod status, respectively. Containers completed with success
    // (exit code 0) are excluded from the requirement check.
    message PodFailurePolicyOnExitCodesRequirement {
      // Restricts the check for exit codes to the container with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/apis.go

    			return fmt.Errorf("problem initializing API group %q: %w", groupName, err)
    		}
    		if len(apiGroupInfo.VersionedResourcesStorageMap) == 0 {
    			// If we have no storage for any resource configured, this API group is effectively disabled.
    			// This can happen when an entire API group, version, or development-stage (alpha, beta, GA) is disabled.
    			klog.Infof("API group %q is not enabled, skipping.", groupName)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"containerName": "Restricts the check for exit codes to the container with the specified name. When null, the rule applies to all containers. When...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type Time struct {
    	time.Time `protobuf:"-"`
    }
    
    // DeepCopyInto creates a deep-copy of the Time value.  The underlying time.Time
    // type is effectively immutable in the time API, so it is safe to
    // copy-by-assign, despite the presence of (unexported) Pointer fields.
    func (t *Time) DeepCopyInto(out *Time) {
    	*out = *t
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    func (c *ClusterRoleAggregationController) enqueue() {
    	// this is unusual, but since the set of all clusterroles is small and we don't know the dependency
    	// graph, just queue up every thing each time.  This allows errors to be selectively retried if there
    	// is a problem updating a single role
    	allClusterRoles, err := c.clusterRoleLister.List(labels.Everything())
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Couldn't list all objects %v", err))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

        // The input tensors x and y are 2-D or higher with shape:
        //       [..., r_x == 1, c_x] and [..., c_y, r_y].
        // The position of r_* and c_* are determined by the polarity of
        // the adj(X|Y) attribute, respectively.
        // So adjX == True indicates [..., c_x, r_x == 1].
        llvm::ArrayRef<int64_t> lhs_shape =
            mlir::cast<RankedTensorType>(bmm_op.getX().getType()).getShape();
        int rX = lhs_shape.size() - 2;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// SHA-3 and SHAKE functions by appending bitstrings to the message.
    	// Using a little-endian bit-ordering convention, these are "01" for SHA-3
    	// and "1111" for SHAKE, or 00000010b and 00001111b, respectively. Then the
    	// padding rule from section 5.1 is applied to pad the message to a multiple
    	// of the rate, which involves adding a "1" bit, zero or more "0" bits, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top