Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,602 for ncalls (0.15 sec)

  1. pkg/controller/nodeipam/ipam/sync/sync_test.go

    	f.calls = append(f.calls, fmt.Sprintf("addAlias %v %v", node.Name, cidrRange))
    	return f.addAliasErr
    }
    
    func (f *fakeAPIs) Node(ctx context.Context, name string) (*v1.Node, error) {
    	f.calls = append(f.calls, fmt.Sprintf("node %v", name))
    	return f.nodeRet, f.nodeErr
    }
    
    func (f *fakeAPIs) UpdateNodePodCIDR(ctx context.Context, node *v1.Node, cidrRange *net.IPNet) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/doc.go

    // Package slog defines an Analyzer that checks for
    // mismatched key-value pairs in log/slog calls.
    //
    // # Analyzer slog
    //
    // slog: check for invalid structured logging calls
    //
    // The slog checker looks for calls to functions from the log/slog
    // package that take alternating key-value pairs. It reports calls
    // where an argument in a key position is neither a string nor a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 830 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

      %calls = "tfr.constant_tensor"(%num_parallel_calls) : (i64) -> tensor<i64>
      %calls1 = "tfr.cast"(%calls) : (tensor<i64>) -> !tfr.tensor
      %drop = "tfr.constant_tensor"(%drop_remainder) : (i1) -> tensor<i1>
      %drop1 = "tfr.cast"(%drop) : (tensor<i1>) -> !tfr.tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

            verifier.verify(logger, calls(1)).debug("Importing foreign packages into class realm {}", "maven.api");
            verifier.verify(logger, calls(1)).debug("  Imported: {} < {}", "group1:artifact1", "test");
            verifier.verify(logger, calls(1)).debug("  Excluded: {}", "group1:artifact2:ext:classifier1:null");
            verifier.verify(logger, calls(1))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

        /**
         * Creates a proxy which delivers method calls to the target object.
         *
         * @param type the type for the proxy.
         * @return The proxy.
         */
        <T> T getProxy(Class<T> type);
    
        /**
         * Stops accepting new method calls, and blocks until all method calls have been executed by the target object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/sync/waitgroup.go

    // must happen before a Wait. Calls with a negative delta, or calls with a
    // positive delta that start when the counter is greater than zero, may happen
    // at any time.
    // Typically this means the calls to Add should execute before the statement
    // creating the goroutine or other event to be waited for.
    // If a WaitGroup is reused to wait for several independent sets of events,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

        calls << "confWithDependencies"
    }
    confCopy.incoming.beforeResolve { incoming ->
        calls << "copyBeforeResolve"
    }
    confCopy.withDependencies { incoming ->
        calls << "copyWithDependencies"
    }
    
    task check {
        doLast {
            conf.resolve()
            assert calls == ["sharedWithDependencies", "confWithDependencies", "sharedBeforeResolve", "confBeforeResolve"]
            calls.clear()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. test/fixedbugs/bug111.go

    // license that can be found in the LICENSE file.
    
    package main
    
    var ncall int;
    
    type Iffy interface {
    	Me() Iffy
    }
    
    type Stucky struct {
    	n int
    }
    
    func (s *Stucky) Me() Iffy {
    	ncall++;
    	return s
    }
    
    func main() {
    	s := new(Stucky);
    	i := s.Me();
    	j := i.Me();
    	j.Me();
    	if ncall != 3 {
    		panic("bug111")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 427 bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/CliFe10AnalysisFacade.kt

    import org.jetbrains.kotlin.resolve.calls.CallResolver
    import org.jetbrains.kotlin.resolve.calls.model.ResolvedCall
    import org.jetbrains.kotlin.resolve.calls.results.OverloadingConflictResolver
    import org.jetbrains.kotlin.resolve.calls.results.PlatformOverloadsSpecificityComparator
    import org.jetbrains.kotlin.resolve.calls.results.TypeSpecificityComparator
    import org.jetbrains.kotlin.resolve.calls.results.createOverloadingConflictResolver
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/ProducerGuardTest.groovy

        def "calls all factories"() {
            given:
            def calls = new AtomicInteger()
    
            when:
            async {
                100.times {
                    start {
                        guard.guardByKey("foo", new Supplier() {
                            @Override
                            Object get() {
                                return calls.getAndIncrement()
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top