Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 421 for call27 (0.07 sec)

  1. 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()
    		return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinReadActionConfinementLifetimeToken.kt

            if (!ApplicationManager.getApplication().isReadAccessAllowed) return "Called outside a read action."
    
            if (!permissionChecker.isAnalysisAllowed()) return permissionChecker.getRejectionReason()
    
            val currentToken = lifetimeTracker.currentToken
            if (currentToken == null) return "Called outside an `analyze` context."
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

         * this method was called twice then [restoreForCurrentThread] should also be called twice to
         * enable input tracking back.
         */
        fun disableForCurrentThread() {
            ++inputTrackingDisabledCounterForThread
        }
    
        /**
         * Restores the input tracking state to the state it was in before the last call to
         * [disableForCurrentThread].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/runtime/cgocall.go

    // license that can be found in the LICENSE file.
    
    // Cgo call and callback support.
    //
    // To call into the C function f from Go, the cgo-generated code calls
    // runtime.cgocall(_cgo_Cfunc_f, frame), where _cgo_Cfunc_f is a
    // gcc-compiled function written by cgo.
    //
    // runtime.cgocall (below) calls entersyscall so as not to block
    // other goroutines or the garbage collector, and then calls
    // runtime.asmcgocall(_cgo_Cfunc_f, frame).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/testing/testing.go

    	t.mu.Unlock()
    }
    
    // Run runs f as a subtest of t called name. It runs f in a separate goroutine
    // and blocks until f returns or calls t.Parallel to become a parallel test.
    // Run reports whether f succeeded (or at least did not fail before calling t.Parallel).
    //
    // Run may be called simultaneously from multiple goroutines, but all such calls
    // must return before the outer test function for t returns.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccess.java

         *
         * @param stateLock Lock to hold while mutating state.
         * @param onOpen Action to run when the lock is opened. Action is called while holding state lock
         * @param onClose Action to run when the lock is closed. Action is called while holding state lock
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedModelValue.java

         *
         * <p>May be called by any thread. This method returns immediately and does not block to wait for any currently running or pending calls to {@link #update(Function)} to complete.
         */
        T get() throws IllegalStateException;
    
        /**
         * Returns the current value, returning {@code null} if not present.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top