Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for rend (0.17 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                             .WithAttr("_outside", "O1"));
        Node* send =
            SendFromHost(ops::NodeOut(key_constant, 0), "F1", "F1", "O1", {e},
                         b2.opts().WithControlInput(e).WithAttr(
                             kXlaHasHostTransferAttrName, true));
    
        Node* s = Sequencer(
            b2.opts().WithName("F1_sequencer").WithControlInputs({recv, send}),
            "F1");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package statefulset
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"math"
    	"math/rand"
    	"reflect"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    		case 0:
    			cv = MakeChan(TypeOf(c), 1)
    			c = cv.Interface().(chan int)
    		}
    
    		// Send
    		cv.Send(ValueOf(2))
    		if i := <-c; i != 2 {
    			t.Errorf("reflect Send 2, native recv %d", i)
    		}
    
    		// Recv
    		c <- 3
    		if i, ok := cv.Recv(); i.Int() != 3 || !ok {
    			t.Errorf("native send 3, reflect Recv %d, %t", i.Int(), ok)
    		}
    
    		// TryRecv fail
    		val, ok := cv.TryRecv()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    begins. Communication blocks until the send can proceed.
    A send on an unbuffered channel can proceed if a receiver is ready.
    A send on a buffered channel can proceed if there is room in the buffer.
    A send on a closed channel proceeds by causing a <a href="#Run_time_panics">run-time panic</a>.
    A send on a <code>nil</code> channel blocks forever.
    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/crypto/sha512/sha512_test.go

    func TestBlockGeneric(t *testing.T) {
    	if boring.Enabled {
    		t.Skip("BoringCrypto doesn't expose digest")
    	}
    	gen, asm := New().(*digest), New().(*digest)
    	buf := make([]byte, BlockSize*20) // arbitrary factor
    	rand.Read(buf)
    	blockGeneric(gen, buf)
    	block(asm, buf)
    	if *gen != *asm {
    		t.Error("block and blockGeneric resulted in different states")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        contextualLabel == "Property \'output\' points to \'${reserved.absolutePath}\' which is managed by Gradle"
                        details == 'Trying to write an output to a read-only location which is for Gradle internal use only'
                        solutions == ['Select a different output location']
                        additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // reit : 2014-09-04 National Association of Real Estate Investment Trusts, Inc.
    reit
    
    // reliance : 2015-04-02 Reliance Industries Limited
    reliance
    
    // ren : 2013-12-12 ZDNS International Limited
    ren
    
    // rent : 2014-12-04 XYZ.COM LLC
    rent
    
    // rentals : 2013-12-05 Binky Moon, LLC
    rentals
    
    // repair : 2013-11-07 Binky Moon, LLC
    repair
    
    // report : 2013-12-05 Binky Moon, LLC
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/garbagecollector_test.go

    					ctx.t.Errorf("expected %d nodes, got %d", len(s.graphNodes), l)
    				}
    				for _, n := range s.graphNodes {
    					graphNode, ok := ctx.gc.dependencyGraphBuilder.uidToNode.Read(n.identity.UID)
    					if !ok {
    						ctx.t.Errorf("%s: no node in graph with uid=%s", n.identity.UID, n.identity.UID)
    						continue
    					}
    					if graphNode.identity != n.identity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    }
    
    // Put1 appends one byte to the end of the buffer.
    func (ab *AsmBuf) Put1(x byte) {
    	ab.buf[ab.off] = x
    	ab.off++
    }
    
    // Put2 appends two bytes to the end of the buffer.
    func (ab *AsmBuf) Put2(x, y byte) {
    	ab.buf[ab.off+0] = x
    	ab.buf[ab.off+1] = y
    	ab.off += 2
    }
    
    // Put3 appends three bytes to the end of the buffer.
    func (ab *AsmBuf) Put3(x, y, z byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    		gp1 := sched.runq.pop()
    		runqput(pp, gp1, false)
    	}
    	return gp
    }
    
    // pMask is an atomic bitstring with one bit per P.
    type pMask []uint32
    
    // read returns true if P id's bit is set.
    func (p pMask) read(id uint32) bool {
    	word := id / 32
    	mask := uint32(1) << (id % 32)
    	return (atomic.Load(&p[word]) & mask) != 0
    }
    
    // set sets P id's bit.
    func (p pMask) set(id int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top