Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for numOpen (0.18 sec)

  1. prepare_stmt.go

    	// suppose the maxopen is 1, g1 is creating record and g2 is querying record.
    	// 1. g1 begin tx, g1 is requeue because of waiting for the system call, now `db.ConnPool` db.numOpen == 1.
    	// 2. g2 select lock `conn.PrepareContext(ctx, query)`, now db.numOpen == db.maxOpen , wait for release.
    	// 3. g1 tx exec insert, wait for unlock `conn.PrepareContext(ctx, query)` to finish tx and release.
    	stmt, err := conn.PrepareContext(ctx, query)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 28 08:47:39 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    			return
    		}
    
    		if !broken || !retried {
    			t.Error(name + ": Failed to simulate broken connection")
    		}
    		*hook = nil
    
    		if numOpen != db.numOpen {
    			t.Errorf(name+": leaked %d connection(s)!", db.numOpen-numOpen)
    			numOpen = db.numOpen
    		}
    	}
    
    	// db.Exec
    	dbExec := func() error {
    		_, err := db.Exec("INSERT|t1|name=?,age=?,dead=?", "Gordon", 3, true)
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	// maybeOpenNewConnections has already executed db.numOpen++ before it sent
    	// on db.openerCh. This function must execute db.numOpen-- if the
    	// connection fails or is closed before returning.
    	ci, err := db.connector.Connect(ctx)
    	db.mu.Lock()
    	defer db.mu.Unlock()
    	if db.closed {
    		if err == nil {
    			ci.Close()
    		}
    		db.numOpen--
    		return
    	}
    	if err != nil {
    		db.numOpen--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. src/net/http/clientserver_test.go

    	}))
    	defer cst.close()
    
    	var numOpen, numClose int32 // atomic
    
    	tlsConfig := &tls.Config{InsecureSkipVerify: true}
    	tr := &Transport{
    		TLSClientConfig: tlsConfig,
    		DialTLS: func(_, addr string) (net.Conn, error) {
    			time.Sleep(10 * time.Millisecond)
    			rc, err := net.Dial("tcp", addr)
    			if err != nil {
    				return nil, err
    			}
    			atomic.AddInt32(&numOpen, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/helpers_test.go

    	add rule ip testing service-42NFTM6N-ns2/svc2/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-SGOXE6O3-ns2/svc2/tcp/p80__10.180.0.2/80 }
    	add rule ip testing service-ULMVA6XW-ns1/svc1/tcp/p80 ip daddr 172.30.0.41 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    	add rule ip testing service-ULMVA6XW-ns1/svc1/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80 }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy service-ULMVA6XW-ns1/svc1/tcp/p80 ip daddr 172.30.0.41 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    		add rule ip kube-proxy service-ULMVA6XW-ns1/svc1/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80 }
    
    		add chain ip kube-proxy endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

                                        BlockArgument& block_arg) {
      // check that inputs length is same as num_replicas.
      if (inputs.size() != replicate.getN()) {
        return replicate.emitError()
               << "Expected numper of inputs (" << inputs.size()
               << ") to append to replicate to be num_replicas ("
               << replicate.getN() << ")";
      }
    
      // add block arg to region. This is in $body.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    		)
    		if i != len(endpoints)-1 {
    			elements = append(elements, ",")
    		}
    	}
    	tx.Add(&knftables.Rule{
    		Chain: svcChain,
    		Rule: knftables.Concat(
    			"numgen random mod", len(endpoints), "vmap",
    			"{", elements, "}",
    		),
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top