Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for vfprintf (0.16 sec)

  1. pkg/apis/core/validation/validation_test.go

    	value string
    }
    
    func line() string {
    	_, _, line, ok := runtime.Caller(1)
    	var s string
    	if ok {
    		s = fmt.Sprintf("%d", line)
    	} else {
    		s = "<??>"
    	}
    	return s
    }
    
    func prettyErrorList(errs field.ErrorList) string {
    	var s string
    	for _, e := range errs {
    		s += fmt.Sprintf("\t%s\n", e)
    	}
    	return s
    }
    
    func newHostPathType(pathType string) *core.HostPathType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let hasVerifier = 1;
    
      let hasCanonicalizer = 1;
    }
    
    def TF_ShardedFilenameOp : TF_Op<"ShardedFilename", [Pure]> {
      let summary = [{
    Generate a sharded filename. The filename is printf formatted as
      }];
    
      let description = [{
    %s-%05d-of-%05d, basename, shard, num_shards.
      }];
    
      let arguments = (ins
        TF_StrTensor:$basename,
        TF_Int32Tensor:$shard,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top