Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 188 for Bind (0.06 sec)

  1. src/cmd/trace/testdata/go122.test

    String id=115
    	data="runtime.systemstack_switch"
    String id=116
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/asm_amd64.s"
    String id=117
    	data="syscall.bind"
    String id=118
    	data="syscall.Bind"
    String id=119
    	data="net.(*netFD).listenStream"
    String id=120
    	data="net.(*sysListener).listenTCPProto"
    String id=121
    	data="net.(*sysListener).listenTCP"
    String id=122
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			`),
    			oldObj: mustUnstructured(`
    				subField:
    					apiVersion: v2
    					kind: Baz
    				list:	
    				- name: entry1
    				  apiVersion: v2
    				  kind: Baz
    				- name: entry2
    				  apiVersion: v3
    				  kind: Bar
    			`),
    			newObj: mustUnstructured(`
    				subField:
    					apiVersion: v2
    					kind: Baz
    					otherField: newValue
    				list:	
    				- name: entry1
    				  apiVersion: v2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	for name := range drivers {
    		list = append(list, name)
    	}
    	slices.Sort(list)
    	return list
    }
    
    // A NamedArg is a named argument. NamedArg values may be used as
    // arguments to [DB.Query] or [DB.Exec] and bind to the corresponding named
    // parameter in the SQL statement.
    //
    // For a more concise way to create NamedArg values, see
    // the [Named] function.
    type NamedArg struct {
    	_NamedFieldsRequired struct{}
    
    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. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        auto remapped_it = remapped_feeds_.find(tensor);
        if (remapped_it != remapped_feeds_.end()) {
          TF_RETURN_IF_ERROR(add_node(remapped_it->second));
        } else {
          TF_RETURN_IF_ERROR(add_node(tensor.node()));
        }
      }
    
      for (const auto& output : specs_.outputs) {
        TensorId tensor = ParseTensorName(output);
        auto remapped_it = remapped_feeds_.find(tensor);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    	if err != nil {
    		s.Close()
    		t.Fatal(err)
    	}
    
    	err = s.Close()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	r.Close()
    }
    
    // Tests fix for issue 2788, that we bind nil to a []byte if the
    // value in the column is sql null
    func TestNullByteSlice(t *testing.T) {
    	db := newTestDB(t, "")
    	defer closeDB(t, db)
    	exec(t, db, "CREATE|t|id=int32,name=nullstring")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    </p>
    
    <p>
    Any other operation on untyped constants results in an untyped constant of the
    same kind; that is, a boolean, integer, floating-point, complex, or string
    constant.
    If the untyped operands of a binary operation (other than a shift) are of
    different kinds, the result is of the operand's kind that appears later in this
    list: integer, rune, floating-point, complex.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  8. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    // 1. There is an idle P, and
    // 2. There are no "spinning" worker threads.
    //
    // A worker thread is considered spinning if it is out of local work and did
    // not find work in the global run queue or netpoller; the spinning state is
    // denoted in m.spinning and in sched.nmspinning. Threads unparked this way are
    // also considered spinning; we don't do goroutine handoff so such threads are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/reflect/value.go

    		// as a default value doesn't makes sense here.
    		panic(&ValueError{"reflect.Value.SetZero", v.Kind()})
    	}
    }
    
    // Kind returns v's Kind.
    // If v is the zero Value ([Value.IsValid] returns false), Kind returns Invalid.
    func (v Value) Kind() Kind {
    	return v.kind()
    }
    
    // Len returns v's length.
    // It panics if v's Kind is not [Array], [Chan], [Map], [Slice], [String], or pointer to [Array].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top