Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,429 for Id (0.13 sec)

  1. internal/event/target/nats.go

    type NATSTarget struct {
    	initOnce once.Init
    
    	id         event.TargetID
    	args       NATSArgs
    	natsConn   *nats.Conn
    	stanConn   stan.Conn
    	jstream    nats.JetStream
    	store      store.Store[event.Event]
    	loggerOnce logger.LogOnce
    	quitCh     chan struct{}
    }
    
    // ID - returns target ID.
    func (target *NATSTarget) ID() event.TargetID {
    	return target.id
    }
    
    // Name - returns the Name of the target.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/rule_test.go

    	                    </Rule>`,
    			expectedErr: errInvalidRuleID,
    		},
    		{ // Rule with empty ID
    			inputXML: `<Rule>
    							<ID></ID>
    							<Filter><Prefix></Prefix></Filter>
    							<Expiration>
    								<Days>365</Days>
    							</Expiration>
                                <Status>Enabled</Status>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_KSEM_CLOSE               = 400 // { int ksem_close(semid_t id); }
    	SYS_KSEM_POST                = 401 // { int ksem_post(semid_t id); }
    	SYS_KSEM_WAIT                = 402 // { int ksem_wait(semid_t id); }
    	SYS_KSEM_TRYWAIT             = 403 // { int ksem_trywait(semid_t id); }
    	SYS_KSEM_INIT                = 404 // { int ksem_init(semid_t *idp, unsigned int value); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go

    //go:build (darwin && !ios) || zos
    
    package unix
    
    // SysvShmCtl performs control operations on the shared memory segment
    // specified by id.
    func SysvShmCtl(id, cmd int, desc *SysvShmDesc) (result int, err error) {
    	return shmctl(id, cmd, desc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 407 bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/heading.go

    type Heading struct {
    	Position
    	Level int
    	Text  *Text
    	// The HTML id attribute. The parser populates this field if
    	// [Parser.HeadingIDs] is true and the heading ends with text like "{#id}".
    	ID string
    }
    
    func (b *Heading) PrintHTML(buf *bytes.Buffer) {
    	fmt.Fprintf(buf, "<h%d", b.Level)
    	if b.ID != "" {
    		fmt.Fprintf(buf, ` id="%s"`, htmlQuoteEscaper.Replace(b.ID))
    	}
    	buf.WriteByte('>')
    	b.Text.PrintHTML(buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/runtime/lock_js.go

    		if delay > 1<<31-1 {
    			delay = 1<<31 - 1 // cap to max int32
    		}
    
    		id := scheduleTimeoutEvent(delay)
    		mp := acquirem()
    		notes[n] = gp
    		notesWithTimeout[n] = noteWithTimeout{gp: gp, deadline: deadline}
    		releasem(mp)
    
    		gopark(nil, nil, waitReasonSleep, traceBlockSleep, 1)
    
    		clearTimeoutEvent(id) // note might have woken early, clear timeout
    
    		mp = acquirem()
    		delete(notes, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/testing/hcnutils_mock.go

    	if _, err := hcnObj.GetNetworkByID(network.Id); err != nil {
    		return nil, err
    	}
    	if _, ok := endpointMap[endpoint.Id]; ok {
    		return nil, fmt.Errorf("endpoint id %s already present", endpoint.Id)
    	}
    	if _, ok := endpointMap[endpoint.Name]; ok {
    		return nil, fmt.Errorf("endpoint Name %s already present", endpoint.Name)
    	}
    	endpoint.Id, endpoint.Name = hcnObj.generateEndpointGuid()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:29:01 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/test.go

    	}
    
    	// Add record.
    	id = int64(len(s.records))
    	s.records = append(s.records, data)
    	if s.lookup == nil {
    		s.lookup = make(map[string]int64)
    	}
    	s.lookup[key] = id
    	hashes, err := tlog.StoredHashesForRecordHash(id, tlog.RecordHash(data), s.hashes)
    	if err != nil {
    		panic(err)
    	}
    	s.hashes = append(s.hashes, hashes...)
    
    	return id, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/encoding/gob/debug.go

    }
    
    // StructValue:
    //
    //	(uint(fieldDelta) FieldValue)*
    func (deb *debugger) structValue(indent tab, id typeId) {
    	deb.dump("Start of struct value of %q id=%d\n<<\n", id.name(), id)
    	fmt.Fprintf(os.Stderr, "%s%s struct {\n", indent, id.name())
    	wire, ok := deb.wireType[id]
    	if !ok {
    		errorf("type id %d not defined", id)
    	}
    	strct := wire.StructT
    	fieldNum := -1
    	indent++
    	for {
    		delta := deb.uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  10. tests/update_has_many_test.go

    	}
    
    	var user2 User
    	DB.Preload("Pets").Find(&user2, "id = ?", user.ID)
    	CheckUser(t, user2, user)
    
    	for _, pet := range user.Pets {
    		pet.Name += "new"
    	}
    
    	if err := DB.Save(&user).Error; err != nil {
    		t.Fatalf("errors happened when update: %v", err)
    	}
    
    	var user3 User
    	DB.Preload("Pets").Find(&user3, "id = ?", user.ID)
    	CheckUser(t, user2, user3)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top