Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for printsp (0.27 sec)

  1. src/net/http/transport_test.go

    	req, _ := NewRequest("GET", "http://something.no-network.tld/", nil)
    	req = test.newReq(req)
    	go func() {
    		_, err := cl.Do(req)
    		eventLog.Printf("Get error = %v", err != nil)
    		test.checkErr("Get", err)
    		gotres <- true
    	}()
    
    	inDial <- true
    
    	eventLog.Printf("canceling")
    	test.cancel(tr, req)
    	test.cancel(tr, req) // used to panic on second call to Transport.Cancel
    
    	if d, ok := t.Deadline(); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/internal/work/exec.go

    		}
    	}()
    	if cfg.BuildN {
    		// In -n mode, print a banner between packages.
    		// The banner is five lines so that when changes to
    		// different sections of the bootstrap script have to
    		// be merged, the banners give patch something
    		// to use to find its context.
    		sh.Print("\n#\n# " + p.ImportPath + "\n#\n\n")
    	}
    
    	if cfg.BuildV {
    		sh.Print(p.ImportPath + "\n")
    	}
    
    	if p.Error != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/net/http/server.go

    func (c *loggingConn) Write(p []byte) (n int, err error) {
    	log.Printf("%s.Write(%d) = ....", c.name, len(p))
    	n, err = c.Conn.Write(p)
    	log.Printf("%s.Write(%d) = %d, %v", c.name, len(p), n, err)
    	return
    }
    
    func (c *loggingConn) Read(p []byte) (n int, err error) {
    	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
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		print(" curg=")
    		if mp.curg != nil {
    			print(mp.curg.goid)
    		} else {
    			print("nil")
    		}
    		print(" mallocing=", mp.mallocing, " throwing=", mp.throwing, " preemptoff=", mp.preemptoff, " locks=", mp.locks, " dying=", mp.dying, " spinning=", mp.spinning, " blocked=", mp.blocked, " lockedg=")
    		if lockedg := mp.lockedg.ptr(); lockedg != nil {
    			print(lockedg.goid)
    		} else {
    			print("nil")
    		}
    		print("\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    				}
    			}
    			n++
    		}
    	}
    
    	ldr.SetSymValue(s, 0)
    	for sub := s; sub != 0; sub = ldr.SubSym(sub) {
    		ldr.SetSymValue(sub, ldr.SymValue(sub)+int64(va))
    		if ctxt.Debugvlog > 2 {
    			fmt.Println("assign text address:", ldr.SymName(sub), ldr.SymValue(sub))
    		}
    	}
    
    	va += funcsize
    
    	return sect, n, va
    }
    
    func resetAddress(ctxt *Link, s loader.Sym) {
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.nestedInList[0]) == type(self.nestedInList[1])",
    			},
    			errors: map[string]string{
    				// Note that errors, like the below, do print the type name, but it changes each time a CRD is updated.
    				// Type name printed in the below error will be of the form "<uuid>.nestedInList.@idx".
    
    				// Developers may not cast the type of variables as a string:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    		defer mu.Unlock()
    		freedFrom[c] = s
    	}
    	putConnHook = func(db *DB, c *driverConn) {
    		if slices.Contains(db.freeConn, c) {
    			// print before panic, as panic may get lost due to conflicting panic
    			// (all goroutines asleep) elsewhere, since we might not unlock
    			// the mutex in freeConn here.
    			println("double free of conn. conflicts are:\nA) " + getFreedFrom(dbConn{db, c}) + "\n\nand\nB) " + stack())
    			panic("double free of conn.")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. 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)
  10. src/net/http/serve_test.go

    		if port == "" {
    			port = "0"
    		}
    		ln, err := net.Listen("tcp", "localhost:"+port)
    		if err != nil {
    			fmt.Fprintln(os.Stderr, err.Error())
    			os.Exit(1)
    		}
    		fmt.Println(ln.Addr().String())
    		HandleFunc("/", func(w ResponseWriter, r *Request) {
    			r.ParseForm()
    			if r.Form.Get("stop") != "" {
    				os.Exit(0)
    			}
    			w.Header().Set("Content-Type", "text/html; charset=utf-8")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top