Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for printsp (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      tf_executor.graph {
      // expected-remark@above {{ID: 6}}
        %island = tf_executor.island {
        // expected-remark@above {{ID: 4}}
        // expected-remark@above {{Successors: {5}}}
          "tf.PrintV2"(%arg0) { output_stream = "stderr", end = "\n" }
          // expected-remark@above {{ID: 0}}
          // expected-remark@above {{Successors: {2}}}
            : (tensor<!tf_type.string>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.4.md

    * Added liveness probe to Heapster service. ([#31878](https://github.com/kubernetes/kubernetes/pull/31878), [@mksalawa](https://github.com/mksalawa))
    * Adding clusters to the list of valid resources printed by kubectl help ([#31719](https://github.com/kubernetes/kubernetes/pull/31719), [@nikhiljindal](https://github.com/nikhiljindal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top