Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 736 for block64 (0.24 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r42/BuildProgressTaskActionsCrossVersionSpec.groovy

            then:
            def task = events.operation("Task :custom")
            task.descendant('Execute doSomethingAmazing for :custom')
        }
    
        def "task actions defined in doFirst and doLast blocks of Groovy build scripts have informative names"() {
            given:
            buildFile << """
                task custom {
                    doFirst {}
                    doLast {}
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/phi.go

    			stk = append(stk, stackEntry{b: c})
    		}
    	}
    }
    
    // domBlock contains extra per-block information to record the dominator tree.
    type domBlock struct {
    	firstChild *ssa.Block // first child of block in dominator tree
    	sibling    *ssa.Block // next child of parent in dominator tree
    }
    
    // A block heap is used as a priority queue to implement the PiggyBank
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/stress-start-stop.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a many interesting cases (network, syscalls, a little GC, busy goroutines,
    // blocked goroutines, LockOSThread, pipes, and GOMAXPROCS).
    
    //go:build ignore
    
    package main
    
    import (
    	"bytes"
    	"io"
    	"log"
    	"net"
    	"os"
    	"runtime"
    	"runtime/trace"
    	"sync"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. releasenotes/notes/48147.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 48112
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 18:44:58 UTC 2024
    - 243 bytes
    - Viewed (0)
  5. pkg/controller/resourcequota/resource_quota_controller_test.go

    	time.Sleep(1 * time.Second)
    
    	err = expectSyncNotBlocked(fakeDiscoveryClient, &qc.workerLock)
    	if err != nil {
    		t.Fatalf("Expected quotacontroller.Sync to be running but it is blocked: %v", err)
    	}
    	assertMonitors(t, qc, "pods", "deployments")
    
    	// Simulate the discovery client returning an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluatorTest.kt

            )
        }
    
        @Test
        fun `Settings target - top-level - pluginManagement block - empty body`() {
    
            val fragment = fragment("pluginManagement", "...")
            val program = Program.PluginManagement(fragment)
    
            assertThat(
                "reduces to static program that evaluates pluginManagement block then applies default plugin requests",
                partialEvaluationOf(
                    program,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 38.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ManagedExecutor.java

    public interface ManagedExecutor extends AsyncStoppable, ExecutorService {
        /**
         * Stops accepting new jobs and blocks until all currently executing jobs have been completed.
         */
        @Override
        void stop();
    
        /**
         * Stops accepting new jobs and blocks until all currently executing jobs have been completed. Once the given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/internal/trace/trace_test.go

    			// of entered -> blocked -> runnable -> running. If in the running state
    			// we block, then we have a futile wakeup. Because of the runtime.Gosched
    			// on these specially marked goroutines, we should end up back in runnable
    			// first. If at any point we go to a different state, switch back to entered
    			// and wait for the next time the goroutine blocks.
    			if ev.Kind() != trace.EventStateTransition {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go

    		// sent to the Sink. Deep copy and send the copy to the queue.
    		event := e.DeepCopy()
    
    		select {
    		case b.buffer <- event:
    		default:
    			sendErr = fmt.Errorf("audit buffer queue blocked")
    			return true
    		}
    	}
    	return true
    }
    
    func (b *bufferedBackend) String() string {
    	return fmt.Sprintf("%s<%s>", PluginName, b.delegateBackend)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SendPartialResponseThenBlock.java

            }
        }
    
        @Override
        public void release() {
            lock.lock();
            try {
                if (!requestStarted) {
                    throw new IllegalStateException("Response is not blocked, should call waitUntilBlocked() first.");
                }
                released = true;
                condition.signalAll();
            } finally {
                lock.unlock();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top