Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for printBase (0.11 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return fmt.Sprintf("%*s%sBuiltinType: %s", indent, "", field, bt.Name)
    }
    
    func (bt *BuiltinType) prec() precedence {
    	return precPrimary
    }
    
    // printBase is common print code for types that are printed with a
    // simple suffix.
    func printBase(ps *printState, qual, base AST) {
    	ps.inner = append(ps.inner, qual)
    	ps.print(base)
    	if len(ps.inner) > 0 {
    		qual.(innerPrinter).printInner(ps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/os/os_windows_test.go

    }
    
    func (rd *reparseData) addSubstituteName(name string) {
    	rd.substituteName.offset, rd.substituteName.length = rd.addString(name)
    }
    
    func (rd *reparseData) addPrintName(name string) {
    	rd.printName.offset, rd.printName.length = rd.addString(name)
    }
    
    func (rd *reparseData) addStringNoNUL(s string) (offset, length uint16) {
    	p := syscall.StringToUTF16(s)
    	p = p[:len(p)-1]
    	return rd.addUTF16s(p), uint16(len(p)) * 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    	_ = h.TableHandler(leaseColumnDefinitions, printLease)
    	_ = h.TableHandler(leaseColumnDefinitions, printLeaseList)
    
    	storageClassColumnDefinitions := []metav1.TableColumnDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    					HolderIdentity: &holder2,
    				},
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"lease2", "holder2", "5m"}}},
    		},
    	}
    
    	for i, test := range tests {
    		rows, err := printLease(&test.lease, printers.GenerateOptions{})
    		if err != nil {
    			t.Fatal(err)
    		}
    		for i := range rows {
    			rows[i].Object.Object = nil
    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        that it matches that of the subsequent TPUExecute{,AndUpdateVariables}
        op.
      }];
      let constructor = "TFTPU::CreateColocateTPUCopyWithDynamicShapePass()";
    }
    
    def PrintPass : Pass<"tf-print", "ModuleOp"> {
      let summary = "Prints the current module.";
      let description = [{
        This prints the current module (by default, to stderr). The module is
        otherwise piped through without changes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top