Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sfprintf (0.47 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. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                secret:
                  optional: true
                  {{ if eq .Spec.ServiceAccountName "" }}
                  secretName: istio.default
                  {{ else -}}
                  secretName: {{  printf "istio.%s" .Spec.ServiceAccountName }}
                  {{  end -}}
              {{- end }}
                {{- if isset .ObjectMeta.Annotations `sidecar.istio.io/userVolume` }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Errorf", Func, 0},
    		{"FormatString", Func, 20},
    		{"Formatter", Type, 0},
    		{"Fprint", Func, 0},
    		{"Fprintf", Func, 0},
    		{"Fprintln", Func, 0},
    		{"Fscan", Func, 0},
    		{"Fscanf", Func, 0},
    		{"Fscanln", Func, 0},
    		{"GoStringer", Type, 0},
    		{"Print", Func, 0},
    		{"Printf", Func, 0},
    		{"Println", Func, 0},
    		{"Scan", Func, 0},
    		{"ScanState", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. 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