Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for Printer (0.16 sec)

  1. pkg/printers/internalversion/printers_test.go

    	tests := []struct {
    		name    string
    		printer func() ([]metav1.TableRow, error)
    	}{
    		{
    			name: "Pod",
    			printer: func() ([]metav1.TableRow, error) {
    				return printPod(&api.Pod{}, printers.GenerateOptions{})
    			},
    		},
    		{
    			name: "PodTemplate",
    			printer: func() ([]metav1.TableRow, error) {
    				return printPodTemplate(&api.PodTemplate{}, printers.GenerateOptions{})
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }
    
    void ConstBytesAttr::print(mlir::AsmPrinter& printer) const {
      StringRef bytes_str = getValue();
      // Elide the attribute if flag is set.
      std::optional<int64_t> limit = OpPrintingFlags().getLargeElementsAttrLimit();
      printer << " : \"";
      if (limit && limit.value() < bytes_str.size()) {
        printer << "__elided__";
      } else {
        printer << "0x" << llvm::toHex(bytes_str);
      }
      printer << "\"";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"previous_track_button":                "\u23ee\ufe0f",
    	"prince":                               "\U0001f934",
    	"princess":                             "\U0001f478",
    	"printer":                              "\U0001f5a8\ufe0f",
    	"probing_cane":                         "\U0001f9af",
    	"puerto_rico":                          "\U0001f1f5\U0001f1f7",
    	"punch":                                "\U0001f44a",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    func printPodList(podList *api.PodList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(podList.Items))
    	for i := range podList.Items {
    		r, err := printPod(&podList.Items[i], options)
    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printPod(pod *api.Pod, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // CHECK-LABEL: testValidWhileRegionNoInputs
    func.func private @printer(tensor<i32>) -> ()
    func.func @testValidWhileRegionNoInputs() -> () {
      "tf.WhileRegion"() (
        {
          %true = arith.constant dense<1> : tensor<i1>
          "tf.Yield"(%true) : (tensor<i1>) -> ()
        },
        {
          %one = arith.constant dense<1> : tensor<i32>
          func.call @printer(%one) : (tensor<i32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        OptionalAttr<TypeAttr>:$input_to_output_intermediate,
        OptionalAttr<TypeAttr>:$effective_hidden_scale_intermediate
      );
    
      let results = (outs AnyTensor:$output);
    
      // TODO(fengliuai): customize printer and parser to not display
      // empty region.
      let regions = (region AnyRegion:$internal);
    
      let hasOptions = 1;
    
      let hasCanonicalizer = 1;
    
      let hasVerifier = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. src/reflect/value.go

    	return (*abi.Type)(abi.NoEscape(unsafe.Pointer(v.typ_)))
    }
    
    // pointer returns the underlying pointer represented by v.
    // v.Kind() must be Pointer, Map, Chan, Func, or UnsafePointer
    // if v.Kind() == Pointer, the base type must not be not-in-heap.
    func (v Value) pointer() unsafe.Pointer {
    	if v.typ().Size() != goarch.PtrSize || !v.typ().Pointers() {
    		panic("can't call pointer on a non-pointer Value")
    	}
    	if v.flag&flagIndir != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. pkg/apis/batch/validation/validation_test.go

    					Parallelism:             pointer.Int32(5),
    					ActiveDeadlineSeconds:   pointer.Int64(2),
    					TTLSecondsAfterFinished: pointer.Int32(1),
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Spec.Parallelism = pointer.Int32(2)
    				job.Spec.ActiveDeadlineSeconds = pointer.Int64(3)
    				job.Spec.TTLSecondsAfterFinished = pointer.Int32(2)
    				job.Spec.ManualSelector = pointer.Bool(true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    					},
    					ClaimMappings: apiserver.ClaimMappings{
    						Username: apiserver.PrefixedClaimOrExpression{
    							Claim:  "username",
    							Prefix: pointer.String(""),
    						},
    						Groups: apiserver.PrefixedClaimOrExpression{
    							Claim:  "groups",
    							Prefix: pointer.String(""),
    						},
    					},
    				},
    				now: func() time.Time { return now },
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
Back to top