Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for printb (0.24 sec)

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

    	Qualifiers AST
    }
    
    func (twq *TypeWithQualifiers) print(ps *printState) {
    	// Give the base type a chance to print the inner types.
    	ps.inner = append(ps.inner, twq)
    	ps.print(twq.Base)
    	if len(ps.inner) > 0 {
    		// The qualifier wasn't printed by Base.
    		ps.writeByte(' ')
    		ps.print(twq.Qualifiers)
    		ps.inner = ps.inner[:len(ps.inner)-1]
    	}
    }
    
    // Print qualifiers as an inner type by just printing the qualifiers.
    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/cmd/go/alldocs.go

    //		symbols, methods, and fields.
    //
    // # Print Go environment information
    //
    // Usage:
    //
    //	go env [-json] [-changed] [-u] [-w] [var ...]
    //
    // Env prints Go environment information.
    //
    // By default env prints information as a shell script
    // (on Windows, a batch file). If one or more variable
    // names is given as arguments, env prints the value of
    // each named variable on its own line.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	log.Printf("%s.Read(%d) = ....", c.name, len(p))
    	n, err = c.Conn.Read(p)
    	log.Printf("%s.Read(%d) = %d, %v", c.name, len(p), n, err)
    	return
    }
    
    func (c *loggingConn) Close() (err error) {
    	log.Printf("%s.Close() = ...", c.name)
    	err = c.Conn.Close()
    	log.Printf("%s.Close() = %v", c.name, err)
    	return
    }
    
    // checkConnErrorWriter writes to c.rwc and records any write errors to c.werr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	conn, err := net.Dial("tcp", s.Listener.Addr().String())
    	if err != nil {
    		t.Fatal("dial error:", err)
    	}
    	defer conn.Close()
    
    	_, err = fmt.Fprint(conn, req)
    	if err != nil {
    		t.Fatal("print error:", err)
    	}
    
    	r := bufio.NewReader(conn)
    	res, err := ReadResponse(r, &Request{Method: "GET"})
    	if err != nil {
    		t.Fatal("ReadResponse error:", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let extraClassDefinition = [{
        ParseResult $cppClass::parse(OpAsmParser &parser, OperationState &result) {
          return parseOneResultSameOperandTypeOp(parser, result);
        }
        void $cppClass::print(OpAsmPrinter &p) {
          return printOneResultOp(getOperation(), p);
        }
      }];
    
      let hasOptions = 1;
    }
    
    def TFL_AddNOp : TFL_Op<"add_n", [
        Commutative,
        Pure,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        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)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          }
          continue;
        }
    
        auto known_constant = ComputeOutputComponent(ValuePort(operand));
        if (!known_constant) continue;
        LLVM_DEBUG(call_op.print(llvm::dbgs() << "Propagate to calee: ");
                   known_constant.print(llvm::dbgs() << " constant ");
                   llvm::dbgs() << "\n");
        RecordValue(ValuePort(arg), known_constant);
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    			name: "ReplicaSet",
    			printer: func() ([]metav1.TableRow, error) {
    				return printReplicaSet(&apps.ReplicaSet{}, printers.GenerateOptions{})
    			},
    		},
    		{
    			name: "Job",
    			printer: func() ([]metav1.TableRow, error) {
    				return printJob(&batch.Job{}, printers.GenerateOptions{})
    			},
    		},
    		{
    			name: "CronJob",
    			printer: func() ([]metav1.TableRow, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    			// initialization is failed
    			if len(container.State.Terminated.Reason) == 0 {
    				if container.State.Terminated.Signal != 0 {
    					reason = fmt.Sprintf("Init:Signal:%d", container.State.Terminated.Signal)
    				} else {
    					reason = fmt.Sprintf("Init:ExitCode:%d", container.State.Terminated.ExitCode)
    				}
    			} else {
    				reason = "Init:" + container.State.Terminated.Reason
    			}
    			initializing = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    </p>
    
    <pre>
    [...]Point{{1.5, -3.5}, {0, 0}}     // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
    [][]int{{1, 2, 3}, {4, 5}}          // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
    [][]Point{{{0, 1}, {1, 2}}}         // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
    map[string]Point{"orig": {0, 0}}    // same as map[string]Point{"orig": Point{0, 0}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top