Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for initiatives (0.15 sec)

  1. cmd/site-replication.go

    			pi = srPeerInfo{
    				PeerInfo:    site,
    				EndpointURL: ep,
    			}
    			return pi, site.DeploymentID == globalDeploymentID()
    		}
    	}
    	return pi, true
    }
    
    // startResync initiates resync of data to peerSite specified. The overall site resync status
    // is maintained in .minio.sys/buckets/site-replication/resync/<deployment-id.meta>, while collecting
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	if cfg == buildOpCfg {
    		// Already initialized to correct OS/cpu; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    	buildOpCfg = cfg
    
    	// Configure the optab entries which may generate prefix opcodes.
    	prefixOptab := make([]Optab, 0, len(prefixableOptab))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    }
    
    func buildop(ctxt *obj.Link) {
    	if oprange[AORW&obj.AMask] != nil {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	for i := 0; i < C_NCLASS; i++ {
    		for n := 0; n < C_NCLASS; n++ {
    			if cmp(n, i) {
    				xcmp[i][n] = true
    			}
    		}
    	}
    	sort.Sort(ocmp(optab))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    		}
    	}
    }
    
    func instinit(ctxt *obj.Link) {
    	if ycover[0] != 0 {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	switch ctxt.Headtype {
    	case objabi.Hplan9:
    		plan9privates = ctxt.Lookup("_privates")
    	}
    
    	for i := range avxOptab {
    		c := avxOptab[i].as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	oprange[a&obj.AMask] = t
    }
    
    func buildop(ctxt *obj.Link) {
    	if oprange[AAND&obj.AMask] != nil {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	for i := 0; i < C_GOK; i++ {
    		for j := 0; j < C_GOK; j++ {
    			if cmp(j, i) {
    				xcmp[i][j] = true
    			}
    		}
    	}
    
    	sort.Sort(ocmp(optab))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	prof.signalLock.Store(0)
    
    	lock(&sched.lock)
    	sched.profilehz = hz
    	unlock(&sched.lock)
    
    	if hz != 0 {
    		setThreadCPUProfiler(hz)
    	}
    
    	gp.m.locks--
    }
    
    // init initializes pp, which may be a freshly allocated p or a
    // previously destroyed p, and transitions it to status _Pgcstop.
    func (pp *p) init(id int32) {
    	pp.id = id
    	pp.status = _Pgcstop
    	pp.sudogcache = pp.sudogbuf[: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)
  7. doc/go1.17_spec.html

    new(T)
    </pre>
    
    <p>
    For instance
    </p>
    
    <pre>
    type S struct { a int; b float64 }
    new(S)
    </pre>
    
    <p>
    allocates storage for a variable of type <code>S</code>,
    initializes it (<code>a=0</code>, <code>b=0.0</code>),
    and returns a value of type <code>*S</code> containing the address
    of the location.
    </p>
    
    <h3 id="Making_slices_maps_and_channels">Making slices, maps and channels</h3>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top