Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for bin2 (0.06 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>phase</name>
              <version>4.0.0+</version>
              <type>String</type>
              <description>The build lifecycle phase to bind the goals in this execution to. If omitted,
                the goals will be bound to the default phase specified by the plugin. </description>
            </field>
            <field xml.transient="true">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. 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)
  3. src/main/webapp/js/bootstrap.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	sched.ngsys.Add(-1)
    
    	if !signal {
    		if trace.ok() {
    			trace.GoCreateSyscall(mp.curg)
    			traceRelease(trace)
    		}
    	}
    	mp.isExtraInSig = signal
    }
    
    // Acquire an extra m and bind it to the C thread when a pthread key has been created.
    //
    //go:nosplit
    func needAndBindM() {
    	needm(false)
    
    	if _cgo_pthread_key_created != nil && *(*uintptr)(_cgo_pthread_key_created) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K 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. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.null_type == 109", "self.type == 110",
    
    				// if a property name is 'self', it can be field selected as 'self.self' (but not as just 'self' because we bind that
    				// variable name to the locally scoped expression value.
    				"self.self == 201",
    				// CEL macro and function names do not need to be escaped because the parser can disambiguate them from the function and
    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. doc/go1.17_spec.html

    <pre>
    func (p *Point) Length() float64 {
    	return math.Sqrt(p.x * p.x + p.y * p.y)
    }
    
    func (p *Point) Scale(factor float64) {
    	p.x *= factor
    	p.y *= factor
    }
    </pre>
    
    <p>
    bind the methods <code>Length</code> and <code>Scale</code>,
    with receiver type <code>*Point</code>,
    to the base type <code>Point</code>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      auto init_func_op =
          sub_symbol_table.lookup<mlir::func::FuncOp>(target_node_name);
      init_func_op->removeAttr("tf.entry_function");
    
      mlir::OpBuilder builder(module_->getBodyRegion());
    
      // Bind asset inputs to asset ops.
      DCHECK_EQ(init_func_op.getNumArguments(), assets.size());
      for (const auto& iter : llvm::enumerate(assets)) {
        auto asset_op = iter.value().op;
        init_func_op.setArgAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	ListenAndServePodResources()
    	Run(<-chan kubetypes.PodUpdate)
    	RunOnce(<-chan kubetypes.PodUpdate) ([]RunPodResult, error)
    }
    
    // Dependencies is a bin for things we might consider "injected dependencies" -- objects constructed
    // at runtime that are necessary for running the Kubelet. This is a temporary solution for grouping
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top