Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 447 for spice (0.02 sec)

  1. statement.go

    1. subdb.callbacks.Query().Execute(subdb)
    2. }
    3.  
    4. writer.WriteString(subdb.Statement.SQL.String())
    5. stmt.Vars = subdb.Statement.Vars
    6. default:
    7. switch rv := reflect.ValueOf(v); rv.Kind() {
    8. case reflect.Slice, reflect.Array:
    9. if rv.Len() == 0 {
    10. writer.WriteString("(NULL)")
    11. } else if rv.Type().Elem() == reflect.TypeOf(uint8(0)) {
    12. stmt.Vars = append(stmt.Vars, v)
    13. stmt.DB.Dialector.BindVarTo(writer, stmt, v)
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Jun 24 09:42:59 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. src/bytes/buffer_test.go

    1. }()
    2.  
    3. buf := NewBuffer(make([]byte, 1))
    4. const maxInt = int(^uint(0) >> 1)
    5. buf.Grow(maxInt)
    6. }
    7.  
    8. // Was a bug: used to give EOF reading empty slice at EOF.
    9. func TestReadEmptyAtEOF(t *testing.T) {
    10. b := new(Buffer)
    11. slice := make([]byte, 0)
    12. n, err := b.Read(slice)
    13. if err != nil {
    14. t.Errorf("read error: %v", err)
    15. }
    16. if n != 0 {
    17. t.Errorf("wrong count; got %d want 0", n)
    18. }
    19. }
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Sep 03 20:55:15 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/bootstrap.min.js.map

    config) {\n    this._isTransitioning = false\n    this._element = element\n    this._config = this._getConfig(config)\n    this._triggerArray = [].slice.call(document.querySelectorAll(\n      `[data-toggle=\"collapse\"][href=\"#${element.id}\"],` +\n      `[data-toggle=\"collapse\"][data-target=\"#${element.id}\"]`\n    ))\n\n    const toggleList = [].slice.call(document.querySelectorAll(SELECTOR_DATA_TOGGLE))\n    for (let i = 0, len = toggleList.length; i < len; i++) {\n      const elem = toggleList[i]\n...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 180.9K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/bytes/61901.md

    1. The [bytes] package adds several functions that work with iterators:
    2. - [Lines] returns an iterator over the
    3. newline-terminated lines in the byte slice s.
    4. - [SplitSeq] returns an iterator over
    5. all substrings of s separated by sep.
    6. - [SplitAfterSeq] returns an iterator
    7. over substrings of s split after each instance of sep.
    8. - [FieldsSeq] returns an iterator over
    9. substrings of s split around runs of whitespace characters,
    10. as defined by unicode.IsSpace.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:23:13 UTC 2024
    - 582 bytes
    - Viewed (0)
  5. manifests/addons/dashboards/ztunnel.libsonnet

    1. row.new('Operations')
    2. + row.withPanels([
    3. panels.timeSeries.base(
    4. 'XDS Connections', queries.ztunnelXdsConnections, |||
    5. Count of XDS connection terminations.
    6. This will typically spike every 30min for each instance.
    7. |||
    8. ),
    9. panels.timeSeries.xdsPushes(
    10. 'XDS Pushes', queries.ztunnelXdsMessages, |||
    11. Count of XDS messages, by type.
    12. |||
    13. ),
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. callbacks/create.go

    1. }
    2. insertID += schema.DefaultAutoIncrementIncrement
    3. }
    4. default:
    5. if pkField == nil {
    6. return
    7. }
    8.  
    9. switch db.Statement.ReflectValue.Kind() {
    10. case reflect.Slice, reflect.Array:
    11. if config.LastInsertIDReversed {
    12. for i := db.Statement.ReflectValue.Len() - 1; i >= 0; i-- {
    13. rv := db.Statement.ReflectValue.Index(i)
    14. if reflect.Indirect(rv).Kind() != reflect.Struct {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. clause/expression.go

    1. if _, ok := expr.Vars[idx].(driver.Valuer); ok {
    2. builder.AddVar(builder, expr.Vars[idx])
    3. } else {
    4. switch rv := reflect.ValueOf(expr.Vars[idx]); rv.Kind() {
    5. case reflect.Slice, reflect.Array:
    6. if rv.Len() == 0 {
    7. builder.AddVar(builder, nil)
    8. } else {
    9. for i := 0; i < rv.Len(); i++ {
    10. if i > 0 {
    11. builder.WriteByte(',')
    12. }
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Tue Oct 10 06:45:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. lib/wasm/wasm_exec_node.js

    1. globalThis.TextDecoder = require("util").TextDecoder;
    2.  
    3. globalThis.performance ??= require("performance");
    4.  
    5. globalThis.crypto ??= require("crypto");
    6.  
    7. require("./wasm_exec");
    8.  
    9. const go = new Go();
    10. go.argv = process.argv.slice(2);
    11. go.env = Object.assign({ TMPDIR: require("os").tmpdir() }, process.env);
    12. go.exit = process.exit;
    13. WebAssembly.instantiate(fs.readFileSync(process.argv[2]), go.importObject).then((result) => {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Aug 30 19:15:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. callbacks/callmethod.go

    1. tx := db.Session(&gorm.Session{NewDB: true})
    2. if called := fc(db.Statement.ReflectValue.Interface(), tx); !called {
    3. switch db.Statement.ReflectValue.Kind() {
    4. case reflect.Slice, reflect.Array:
    5. db.Statement.CurDestIndex = 0
    6. for i := 0; i < db.Statement.ReflectValue.Len(); i++ {
    7. if value := reflect.Indirect(db.Statement.ReflectValue.Index(i)); value.CanAddr() {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sat Feb 18 01:20:29 UTC 2023
    - 846 bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    1. // There must be at least one member in this slice.
    2. // A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request.
    3. // +listType=atomic
    4. // Required.
    5. repeated Subject subjects = 1;
    6.  
    7. // `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the
    8. // target resource.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top