Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 280 for call27 (1.21 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

         * {@link #nextElements} if {@code next()} was called more recently then {@code previous},
         * {@link #previousElements} if the reverse is true, or -- overriding both of these -- {@code
         * null} if {@code remove()} or {@code add()} has been called more recently than either. We use
         * this to determine which stack to pop from on a call to {@code remove()} (or to pop from and
         * push to on a call to {@code set()}).
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ImportOptimizer.kt

            get() = analysisSession.token
    
        override fun analyseImports(file: KtFile): KaImportOptimizerResult = withValidityAssertion {
            error("FE10 implementation of KtImportOptimizer should not be called from anywhere")
        }
    
        override fun getImportableName(symbol: KaSymbol): FqName? {
            require(symbol is KaFe10Symbol)
    
            val descriptor = getSymbolDescriptor(symbol)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonFactory.java

                    // handler will stop any long-lived worker daemons.  If a worker is not used during this session (i.e. this method
                    // is never called) the cancellation handler will not stop daemons on a cancellation (as there is no danger of
                    // leaving one in an unsafe state).
                    workerDaemonClientCancellationHandler.start();
                    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 13:20:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. internal/ringbuffer/README.md

    Either side can use `rb.CloseWithError(err error)` to signal an error and close the ring buffer. 
    Any reads or writes will return the error on next call.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/testing/benchmark.go

    //
    // A benchmark ends when its Benchmark function returns or calls any of the methods
    // FailNow, Fatal, Fatalf, SkipNow, Skip, or Skipf. Those methods must be called
    // only from the goroutine running the Benchmark function.
    // The other reporting methods, such as the variations of Log and Error,
    // may be called simultaneously from multiple goroutines.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/net/resolverdialfunc_test.go

    			if err := h.StartDial(network, address); err != nil {
    				return nil, err
    			}
    		}
    		return a, nil
    	}
    }
    
    type resolverDialHandler struct {
    	// StartDial, if non-nil, is called when Go first calls Resolver.Dial.
    	// Any error returned aborts the dial and is returned unwrapped.
    	StartDial func(network, address string) error
    
    	Question func(dnsmessage.Header, dnsmessage.Question)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/path-params-numeric-validations.md

    !!! note "Technical Details"
        When you import `Query`, `Path` and others from `fastapi`, they are actually functions.
    
        That when called, return instances of classes of the same name.
    
        So, you import `Query`, which is a function. And when you call it, it returns an instance of a class also named `Query`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def "calls beforeResolve closure on incoming dependencies set when dependencies are resolved"() {
            def config = conf("conf")
            resolver.resolveGraph(config) >> graphResolved()
            def called = false
    
            expect:
            config.incoming.afterResolve {
                assert it == config.incoming
                called = true
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. src/internal/concurrent/hashtriemap.go

    type node[K, V comparable] struct {
    	isEntry bool
    }
    
    func (n *node[K, V]) entry() *entry[K, V] {
    	if !n.isEntry {
    		panic("called entry on non-entry node")
    	}
    	return (*entry[K, V])(unsafe.Pointer(n))
    }
    
    func (n *node[K, V]) indirect() *indirect[K, V] {
    	if n.isEntry {
    		panic("called indirect on entry node")
    	}
    	return (*indirect[K, V])(unsafe.Pointer(n))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/release/notes.md

    The Gradle team is excited to announce Gradle @version@.
    
    This release features [1](), [2](), ... [n](), and more.
    
    <!-- 
    Include only their name, impactful features should be called out separately below.
     [Some person](https://github.com/some-person)
    
     THIS LIST SHOULD BE ALPHABETIZED BY [PERSON NAME] - the docs:updateContributorsInReleaseNotes task will enforce this ordering, which is case-insensitive.
    -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top