Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,050 for halted (0.23 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

    /**
     * [KotlinGlobalModificationService] is a central service for the invalidation of caches during/between tests.
     *
     * All `publish` functions must be called in a write action because the events in [KotlinModificationTopics] guarantee that the listener is called in a
     * write action.
     *
     * Implementations of this service should publish global modification events to at least the following components:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

     * and {@link BuildFeatures#getIsolatedProjects() Isolated Projects}.
     *
     * @since 8.8
     */
    @Incubating
    public interface GradleLifecycle {
        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately before a project is evaluated.
         *
         * Any extensions added to the {@code Project} model will be available to build scripts.
         *
         * @param action The action to execute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/encoding/gob/type.go

    	"sync"
    	"sync/atomic"
    	"unicode"
    	"unicode/utf8"
    )
    
    // userTypeInfo stores the information associated with a type the user has handed
    // to the package. It's computed once and stored in a map keyed by reflection
    // type.
    type userTypeInfo struct {
    	user        reflect.Type // the type the user handed us
    	base        reflect.Type // the base type after all indirections
    	indir       int          // number of indirections to reach the base type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileAccess.java

         * @throws IllegalStateException When this lock has been closed.
         * @throws FileIntegrityViolationException If the integrity of the file cannot be guaranteed (i.e. {@link #writeFile(Runnable)} has never been called)
         * @throws InsufficientLockModeException If the held lock is not at least a shared lock (e.g. LockMode.NONE)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_windows.go

    	_ "net/http/pprof"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/proxy"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/kubernetes/pkg/proxy/winkernel"
    )
    
    // platformApplyDefaults is called after parsing command-line flags and/or reading the
    // config file, to apply platform-specific default values to config.
    func (o *Options) platformApplyDefaults(config *proxyconfigapi.KubeProxyConfiguration) {
    	if config.Mode == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/testing/newcover.go

    // tear-down function to be called at the end of the testing run.
    var cover2 struct {
    	mode        string
    	tearDown    func(coverprofile string, gocoverdir string) (string, error)
    	snapshotcov func() float64
    }
    
    // registerCover2 is invoked during "go test -cover" runs.
    // It is used to record a 'tear down' function
    // (to be called when the test is complete) and the coverage mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/plugin/plugin.go

    	draPlugins.delete(pluginName)
    }
    
    // DeRegisterPlugin is called when a plugin has removed its socket,
    // signaling it is no longer available.
    func (h *RegistrationHandler) DeRegisterPlugin(pluginName string) {
    	klog.InfoS("DeRegister DRA plugin", "name", pluginName)
    	deregisterPlugin(pluginName)
    	h.controller.removePlugin(pluginName)
    }
    
    // ValidatePlugin is called by kubelet's plugin watcher upon detection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeRegistry.java

     */
    @ServiceScope(Scope.Build.class) // TODO: Might be too specific a scope, but needed something there
    public interface SoftwareTypeRegistry {
        /**
         * Registers a plugin as providing a software type.  Cannot be called again once the list of software types has been
         * queried via {@link #getSoftwareTypeImplementations()}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/permissions/KaBaseAnalysisPermissionChecker.kt

            val application = ApplicationManager.getApplication()
    
            if (isProhibitedEdtAnalysis(application)) {
                return "Called in the EDT thread."
            }
    
            if (isProhibitedWriteActionAnalysis(application)) {
                return "Called from a write action."
            }
    
            permissionRegistry.explicitAnalysisRestriction?.let { restriction ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/net/sendfile_test.go

    		poll.TestHookDidSendFile = orig
    	}()
    	var (
    		called     bool
    		gotHandled bool
    		gotFD      *poll.FD
    	)
    	poll.TestHookDidSendFile = func(dstFD *poll.FD, src int, written int64, err error, handled bool) {
    		if called {
    			t.Error("internal/poll.SendFile called multiple times, want one call")
    		}
    		called = true
    		gotHandled = handled
    		gotFD = dstFD
    	}
    	f()
    	if !called {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top