Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for seedling (0.16 sec)

  1. src/net/http/request.go

    	// TransferEncoding can usually be ignored; chunked encoding is
    	// automatically added and removed as necessary when sending and
    	// receiving requests.
    	TransferEncoding []string
    
    	// Close indicates whether to close the connection after
    	// replying to this request (for servers) or after sending this
    	// request and reading its response (for clients).
    	//
    	// For server requests, the HTTP server handles this automatically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    		o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    		return curCtx, true, nil
    	}
    
    	// Validate that the M we're stealing from is what we expect.
    	mid := ThreadID(ev.args[2]) // The M we're stealing from.
    
    	newCtx := curCtx
    	if mid == curCtx.M {
    		// We're stealing from ourselves. This behaves like a ProcStop.
    		if curCtx.P != pid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	mask := mergePPC64RShiftMask(m, s, 32)
    	if !isPPC64WordRotateMask(mask) {
    		return 0
    	}
    	return encodePPC64RotateMask((32-s)&31, mask, 32)
    }
    
    // Test if a word shift right feeding into a CLRLSLDI can be merged into RLWINM.
    // Return the encoded RLWINM constant, or 0 if they cannot be merged.
    func mergePPC64ClrlsldiSrw(sld, srw int64) int64 {
    	mask_1 := uint64(0xFFFFFFFF >> uint(srw))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    	// special value -1 means no explicit seeding.
    	if seed != -1 {
    		rand.Seed(seed)
    	}
    	return rand.Intn(max-min) + min
    }
    
    // Randomizes the order of bytes in the byte array
    // using Knuth Fisher-Yates shuffle algorithm.
    func randomizeBytes(s []byte, seed int64) []byte {
    	// special value -1 means no explicit seeding.
    	if seed != -1 {
    		rand.Seed(seed)
    	}
    	n := len(s)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    	// The value of 250 is chosen b/c values that are too high can cause registry DoS issues.
    	BurstReplicas = 250
    
    	// StatusUpdateRetries limits the number of retries if sending a status update to API server fails.
    	StatusUpdateRetries = 1
    
    	// BackoffGCInterval is the time that has to pass before next iteration of backoff GC is run
    	BackoffGCInterval = 1 * time.Minute
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    		setCgoAttr(ctxt, d.file, d.pkg, d.directives, hostObjSyms)
    	}
    	ctxt.cgodata = nil
    
    	if ctxt.LinkMode == LinkInternal {
    		// Drop all the cgo_import_static declarations.
    		// Turns out we won't be needing them.
    		for symIdx := range hostObjSyms {
    			if l.SymType(symIdx) == sym.SHOSTOBJ {
    				// If a symbol was marked both
    				// cgo_import_static and cgo_import_dynamic,
    				// then we want to make it cgo_import_dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    `tf.TPUReplicatedInput` (data parallelism) ops. It transforms a DAG where
    multiple `tf.TPUPartitionedInput` ops are feeding into a single
    `tf.TPUReplicatedInput` into a DAG where multiple `tf.TPUReplicatedInput` ops
    are feeding into a single `tf.TPUPartitionedInput`. Transforming the IR in such
    a manner will allow subsequent cluster formation pass to handle IR with both
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    }
                };
            }
    
            ExecutorService createExecutor(int parallelism) {
                //
                // We need an executor that will not block.
                // We can't use work stealing, as we are building a graph
                // and this could lead to cycles where a thread waits for
                // a task to finish, then execute another one which waits
                // for the initial task...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Fold initial carry bit if 0.
    (ADDE x y (Select1 <typ.UInt64> (ADDCconst (MOVDconst [0]) [-1]))) => (ADDC x y)
    // Fold transfer of CA -> GPR -> CA. Note 2 uses when feeding into a chained Add64carry.
    (Select1 (ADDCconst n:(ADDZEzero x) [-1])) && n.Uses <= 2 => x
    (ADDE (MOVDconst [0]) y c) => (ADDZE y c)
    
    // Borrowing subtraction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      //        the while for these resources.
      //
      // Note that for WhileRegion ops, if a resource is written, it will be written
      // only in the body and not the condition, so the hoister analysis will infer
      // it as needing a read as well.
    
      // Generate hoisted reads before the while.
      hoister.GenerateHoistedReads();
    
      // Replace just the read-only resources with the hoisted reads.
      hoister.ReplaceResourceLoads(/*read_only=*/true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top