Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 965 for halted (0.15 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// function-valued expression, instead of being called.
    	//
    	// Per the spec:
    	//  "The built-in functions do not have standard Go types, so they can only
    	//  appear in call expressions; they cannot be used as function values."
    	//
    	// Example:
    	//  var _ = copy
    	UncalledBuiltin
    
    	// InvalidAppend occurs when append is called with a first argument that is
    	// not a slice.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/runtime/stubs.go

    // run other goroutines.
    //
    // mcall can only be called from g stacks (not g0, not gsignal).
    //
    // This must NOT be go:noescape: if fn is a stack-allocated closure,
    // fn puts g on a run queue, and g executes before fn returns, the
    // closure will be invalidated while it is still executing.
    func mcall(fn func(*g))
    
    // systemstack runs fn on a system stack.
    // If systemstack is called from the per-OS-thread (g0) stack, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. cni/pkg/plugin/plugin_test.go

    	ns.ObjectMeta.Labels = map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeAmbient}
    
    	testCmdAddExpectFail(t, cniConf, pod, ns)
    
    	wasCalled := serverClose()
    	// server called, but errored
    	assert.Equal(t, wasCalled, true)
    }
    
    func TestCmdAddPodWithProxySidecarAmbientEnabledNS(t *testing.T) {
    	url, serverClose := setupCNIEventClientWithMockServer(false)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "top-level adder has a convention and is called"     | addToList("foo") | addToList("bar")   | "list = foo, bar"
            "top-level adder has a convention and is not called" | addToList("foo") | ""                 | "list = foo"
            "nested adder has a convention and is called"        | addToBaz("foo")  | addToBaz("bar")    | "baz = foo, bar"
            "nested adder has a convention and is not called"    | addToBaz("foo")  | ""                 | "baz = foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. pkg/kube/kclient/crdwatcher.go

    }
    
    // HasSynced returns whether the underlying cache has synced and the callback has been called at least once.
    func (c *crdWatcher) HasSynced() bool {
    	return c.queue.HasSynced()
    }
    
    // Run starts the controller. This must be called.
    func (c *crdWatcher) Run(stop <-chan struct{}) {
    	c.mutex.Lock()
    	if c.stop != nil {
    		// Run already called. Because we call this from client.RunAndWait this isn't uncommon
    		c.mutex.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

         *
         * This method should be called only once per build but multiple calls with the
         * same argument are allowed.
         *
         * @param settingsDir directory where to look for the {@code gradle.properties} file
         * @param setSystemProperties should system properties be set or not
         * @throws IllegalStateException if called with a different argument in the same build
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/godebug_default.txt

    stderr 'invalid //go:debug: value contains space'
    
    [short] skip
    
    # Programs in Go 1.21 work module should trigger run-time error.
    cp go.mod.21 go.mod
    ! go run .
    stderr 'panic: panic called with nil argument'
    
    ! go run rsc.io/panicnil
    stderr 'panic: panic called with nil argument'
    
    # Programs in Go 1.20 work module use old panic nil behavior.
    cp go.mod.20 go.mod
    ! go run .
    stderr 'panic: nil'
    
    ! go run rsc.io/panicnil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

         * superconfigurations.
         */
        Set<ExcludeRule> getAllExcludeRules();
    
        /**
         * @implSpec Usage: This method should only be called on resolvable configurations and should throw an exception if
         * called on a configuration that does not permit this usage.
         */
        @Nullable
        ConfigurationInternal getConsistentResolutionSource();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top