Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 137 for setAlg (0.12 sec)

  1. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, int timeout); }
    	SYS_SEMGET                   = 221 // { int semget(key_t key, int nsems, int semflg); }
    	SYS_SEMOP                    = 222 // { int semop(int semid, struct sembuf *sops, size_t nsops); }
    	SYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, int timeout); }
    	SYS_SEMGET                   = 221 // { int semget(key_t key, int nsems, int semflg); }
    	SYS_SEMOP                    = 222 // { int semop(int semid, struct sembuf *sops, size_t nsops); }
    	SYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, int timeout); }
    	SYS_SEMGET                   = 221 // { int semget(key_t key, int nsems, int semflg); }
    	SYS_SEMOP                    = 222 // { int semop(int semid, struct sembuf *sops, size_t nsops); }
    	SYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }
    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/link/internal/loader/loader.go

    func (l *Loader) SymPlt(s Sym) int32 {
    	if v, ok := l.plt[s]; ok {
    		return v
    	}
    	return -1
    }
    
    // SetPlt sets the PLT offset of symbol i.
    func (l *Loader) SetPlt(i Sym, v int32) {
    	if i >= Sym(len(l.objSyms)) || i == 0 {
    		panic("bad symbol for SetPlt")
    	}
    	if v == -1 {
    		delete(l.plt, i)
    	} else {
    		l.plt[i] = v
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_test.go

    	addTestClientEndpoints(m)
    
    	m.AddHTTPService(edsIncSvc, edsIncVip, 8080)
    	m.SetEndpoints(edsIncSvc, "", newEndpointWithAccount("127.0.0.1", "hello-sa", "v1"))
    	// Let initial updates settle
    	s.EnsureSynced(t)
    
    	adscConn := s.Connect(&model.Proxy{Locality: util.ConvertLocality(asdcLocality), IPAddresses: []string{"10.10.10.10"}}, nil, watchAll)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. src/net/lookup_test.go

    		// to check for cancellation on the fast path.
    		// (For example, it could use a local cache to avoid blocking entirely.)
    
    		// The lookup may deduplicate in-flight requests, so give it time to settle
    		// in between.
    		time.Sleep(time.Millisecond * 1)
    	}
    
    	_, err = LookupHost(google)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    type lookupCustomResolver struct {
    	*Resolver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/server.go

    		// In Istio 1.22 - we return nil here - the old code in s.initDNSCerts used to have
    		// an 'else' to handle the unknown providers by not initializing the TLS certs but
    		// still seting the root from /etc/certs/root-cert.pem for distribution in the
    		// namespace controller.
    		// The new behavior appears safer - IMO we may also do a fatal unless provider is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    				// used to reach the service). This may be changed in the
    				// future.
    				tx.Add(&knftables.Set{
    					Name: epInfo.affinitySetName,
    					Type: ipvX_addr,
    					Flags: []knftables.SetFlag{
    						// The nft docs say "dynamic" is only
    						// needed for sets containing stateful
    						// objects (eg counters), but (at least on
    						// RHEL8) if we create the set without
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    				vi := &s.values[a.ID]
    				if vi.regs == 0 && !vi.rematerializeable {
    					// Use the spill location.
    					// This forces later liveness analysis to make the
    					// value live at this point.
    					v.SetArg(0, s.makeSpill(a, b))
    				} else if _, ok := a.Aux.(*ir.Name); ok && vi.rematerializeable {
    					// Rematerializeable value with a gc.Node. This is the address of
    					// a stack object (e.g. an LEAQ). Keep the object live.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    		// for writing the entire PLT.  We just need to
    		// reserve 8 bytes for each PLT entry and generate a
    		// JMP_SLOT dynamic relocation for it.
    		//
    		// TODO(austin): ABI v1 is different
    		ldr.SetPlt(s, int32(plt.Size()))
    
    		plt.Grow(plt.Size() + 8)
    		plt.SetSize(plt.Size() + 8)
    
    		rela.AddAddrPlus(ctxt.Arch, plt.Sym(), int64(ldr.SymPlt(s)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top