Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 736 for block64 (0.26 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

    cathedral(thing(a: 12, 123, false))
    """)
        }
    
        def "can add code blocks"() {
            given:
            def block1 = builder.block("Add some thing", "foo.bar")
            block1.propertyAssignment(null, "foo.bar", "bazar", true)
            def block2 = builder.block("Do it again", "foo.bar")
            block2.propertyAssignment(null, "foo.bar", "bazar", true)
            builder.block(null, "other")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	responses.Add(AllowedNonMutatingInflightRequestsNo * 2)
    
    	// Block is used to keep requests in flight for as long as we need to. All requests will
    	// be unblocked at the same time.
    	block := &sync.WaitGroup{}
    	block.Add(1)
    
    	waitForCalls := true
    	waitForCallsMutex := sync.Mutex{}
    
    	server := createMaxInflightServer(t, calls, block, &waitForCalls, &waitForCallsMutex, AllowedNonMutatingInflightRequestsNo, 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    //
    // We can redirect p to s directly.
    //
    // The implementation here borrows the framework of the prove pass.
    //
    //	1, Traverse all blocks of function f to find If blocks.
    //	2,   For any If block b, traverse all its predecessors to find If blocks.
    //	3,     For any If block predecessor p, update relationship p->b.
    //	4,     Traverse all successors of b.
    //	5,       For any successor s of b, try to update relationship b->s, if a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/fuse.go

    )
    
    // fuse simplifies control flow by joining basic blocks.
    func fuse(f *Func, typ fuseType) {
    	for changed := true; changed; {
    		changed = false
    		// Be sure to avoid quadratic behavior in fuseBlockPlain. See issue 13554.
    		// Previously this was dealt with using backwards iteration, now fuseBlockPlain
    		// handles large runs of blocks.
    		for i := len(f.Blocks) - 1; i >= 0; i-- {
    			b := f.Blocks[i]
    			if typ&fuseTypeIf != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      /// Prune the cache by removing files with expired blocks.
      void Prune() ABSL_LOCKS_EXCLUDED(mu_);
    
      bool BlockNotStale(const std::shared_ptr<Block>& block)
          ABSL_EXCLUSIVE_LOCKS_REQUIRED(mu_);
    
      /// Look up a Key in the block cache.
      std::shared_ptr<Block> Lookup(const Key& key) ABSL_LOCKS_EXCLUDED(mu_);
    
      void MaybeFetch(const Key& key, const std::shared_ptr<Block>& block,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 04:46:34 UTC 2020
    - 10.6K bytes
    - Viewed (0)
  6. src/runtime/crash_unix_test.go

    	}
    
    	// The child blockers print "x\n" and then block on a lock. Receiving
    	// those bytes only indicates that the child is _about to block_. Since
    	// we don't have a way to know when it is fully blocked, sleep a bit to
    	// make us less likely to lose the race and signal before the child
    	// blocks.
    	time.Sleep(100 * time.Millisecond)
    
    	// Send SIGQUIT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

        //            (__)\       )\/\
        //                ||----w |
        //                ||     ||
        Runnable state = get();
        Blocker blocker = null;
        while (state instanceof Blocker || state == PARKED) {
          if (state instanceof Blocker) {
            blocker = (Blocker) state;
          }
          spinCount++;
          if (spinCount > MAX_BUSY_WAIT_SPINS) {
            /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/passbm_test.go

    	blocs = append(blocs,
    		Bloc("entry",
    			Valu(valn("store", 0, 4), OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, types.Types[types.TUINTPTR], 0, nil),
    			Goto(blockn(1)),
    		),
    	)
    	for i := 1; i < size+1; i++ {
    		blocs = append(blocs, Bloc(blockn(i),
    			Valu(valn("v", i, 0), OpConstBool, types.Types[types.TBOOL], 1, nil),
    			Valu(valn("addr", i, 1), OpAddr, ptrType, 0, nil, "sb"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. plugin/pkg/admission/eventratelimit/admission_test.go

    				newEventRequest().withNamespace("B").blocked(),
    				newEventRequest().withNamespace("A").blocked(),
    				// This should clear out namespace B from the lru cache
    				newEventRequest().withNamespace("C"),
    				newEventRequest().withNamespace("A").blocked(),
    				newEventRequest().withNamespace("B"),
    			},
    		},
    		{
    			name:                     "event blocked by source+object limits",
    			serverBurst:              100,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 17 13:19:08 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

                    setState(State.Blocking, State.Blocked);
                    waitForState(State.Unblocked, State.Failed);
                } catch (InterruptedException e) {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
            }
    
            public void expectUnblocks(Closure action) {
                try {
                    waitForState(State.Blocked);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top