Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for seedling (0.15 sec)

  1. src/math/rand/rng.go

     * algorithm by
     * DP Mitchell and JA Reeds
     */
    
    const (
    	rngLen   = 607
    	rngTap   = 273
    	rngMax   = 1 << 63
    	rngMask  = rngMax - 1
    	int32max = (1 << 31) - 1
    )
    
    var (
    	// rngCooked used for seeding. See gen_cooked.go for details.
    	rngCooked [rngLen]int64 = [...]int64{
    		-4181792142133755926, -4576982950128230565, 1395769623340756751, 5333664234075297259,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 14:20:53 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_delta.go

    	"istio.io/istio/pkg/istio-agent/metrics"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/wasm"
    )
    
    // sendDeltaRequest is a small wrapper around sending to con.requestsChan. This ensures that we do not
    // block forever on
    func (con *ProxyConnection) sendDeltaRequest(req *discovery.DeltaDiscoveryRequest) {
    	con.deltaRequestsChan.Put(req)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/stackalloc.go

    			}
    			if v.Op == OpStoreReg {
    				s.values[v.Args[0].ID].spill = v
    			}
    		}
    	}
    
    	// Compute liveness info for values needing a slot.
    	s.computeLive(spillLive)
    
    	// Build interference graph among values needing a slot.
    	s.buildInterferenceGraph()
    }
    
    func (s *stackAllocState) stackalloc() {
    	f := s.f
    
    	// Build map from values to their names, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. internal/grid/muxclient.go

    func (m *muxClient) sendLocked(msg message) error {
    	dst := GetByteBufferCap(msg.Msgsize())
    	msg.Seq = m.SendSeq
    	msg.MuxID = m.MuxID
    	msg.Flags |= m.BaseFlags
    	if debugPrint {
    		fmt.Println("Client sending", &msg, "to", m.parent.Remote)
    	}
    	m.SendSeq++
    
    	dst, err := msg.MarshalMsg(dst)
    	if err != nil {
    		return err
    	}
    	if msg.Flags&FlagSubroute != 0 {
    		if m.subroute == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmContext.java

        private static final String S2C_SEAL_CONSTANT = "session key to server-to-client sealing key magic constant";
    
        private static final String C2S_SIGN_CONSTANT = "session key to client-to-server signing key magic constant";
        private static final String C2S_SEAL_CONSTANT = "session key to client-to-server sealing key magic constant";
    
        private static final Logger log = LoggerFactory.getLogger(NtlmContext.class);
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    Otherwise, the build might still require some interactions with remote repositories to complete missing information, which might be available in a different version.
    If multiple incompatible Gradle versions are in play, all should be used when seeding the cache.
    
    .Dependency cache compatibility
    [%header%autowidth,compact]
    |===
    | Module cache version  | File cache version    | Metadata cache version    | Gradle version(s)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CredentialsProviderIntegrationTest.groovy

                }
            """
    
            then:
            succeeds 'firstTask'
        }
    
        def "missing credentials will fail the build at configuration time when the task needing them is executed directly"() {
            given:
            buildFile << """
                def firstTask = tasks.register('firstTask') {
                }
    
                tasks.register('taskWithCredentials', TaskWithCredentials) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/compilability_check_util.h

        // them.
        //
        // TODO(b/112837194): This restriction can be lifted with some work.
        bool allow_tensor_array_ops = false;
    
        // Whether stateful RNG ops are allowed.  XLA's RNG does not have the same
        // seeding behavior as TensorFlow's RNG (b/34749654).  So we avoid
        // auto-clustering stateful RNG ops.
        bool allow_stateful_rng_ops = false;
    
        // TODO(b/118970344): Whether ControlTrigger ops are allowed.  It is unsound
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. src/runtime/traceruntime.go

    		procStatus = traceProcSyscallAbandoned
    	}
    	w := tl.eventWriter(goStatus, procStatus)
    
    	// Emit the status of the P we're stealing. We may have *just* done this when creating the event
    	// writer but it's not guaranteed, even if inSyscall is true. Although it might seem like from a
    	// syscall context we're always stealing a P for ourselves, we may have not wired it up yet (so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/dashboard_test.go

    	// Spread out over 20s so rate() queries will behave correctly
    	ticker := time.NewTicker(time.Second)
    	times := 0
    	for {
    		select {
    		case <-ticker.C:
    			times++
    			scopes.Framework.Infof("sending traffic %v", times)
    			for _, ing := range ingr {
    				hosts, ports := ing.TCPAddresses()
    				host := hosts[0]
    				port := ports[0]
    				_, err := ing.Call(echo.CallOptions{
    					Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top