Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 182 for mcall (0.1 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

                @Provides
                Integer createInteger(Callable<Integer> factory) {
                    return factory.call()
                }
    
                @Provides
                String createString(Callable<String> factory) {
                    return factory.call()
                }
    
                @Provides
                Callable<Integer> createIntFactory() {
                    return { 123 }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

    // `cond_output` and `body_outputs`.
    //
    // If `status` is OK, the caller must call either TF_FinishWhile or
    // TF_AbortWhile on the returned TF_WhileParams. If `status` isn't OK, the
    // returned TF_WhileParams is not valid, and the caller should not call
    // TF_FinishWhile() or TF_AbortWhile().
    //
    // Missing functionality (TODO):
    // - Gradients
    // - Reference-type inputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputDoesNotContain('Providing metadata for group:projectA:1.1')
    
            and: "remote status file parsed only once"
            outputContains 'Parsing status file call count: 1'
            outputDoesNotContain('Parsing status file call count: 2')
    
            when: "resolving the same dependencies"
            server.expectHead("/repo/status.txt", statusFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  4. src/testing/testing.go

    // if a test file contains a function:
    //
    //	func TestMain(m *testing.M)
    //
    // then the generated test will call TestMain(m) instead of running the tests or benchmarks
    // directly. TestMain runs in the main goroutine and can do whatever setup
    // and teardown is necessary around a call to m.Run. m.Run will return an exit
    // code that may be passed to os.Exit. If TestMain returns, the test wrapper
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            when:
            property.finalizeValue()
    
            then:
            1 * function.call() >> {
                // Emulate concurrent get() in other thread
                EvaluationContext.current().evaluateNested(property::get)
            }
            1 * function.call() >> someValue()
            0 * function._
    
            when:
            def result = property.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    	x := p.parseRhs()
    	if call, isCall := x.(*ast.CallExpr); isCall {
    		return call
    	}
    	p.errorExpected(x.Pos(), "function/method call")
    	return nil
    }
    
    func (p *parser) parseGoStmt() ast.Stmt {
    	if p.trace {
    		defer un(trace(p, "GoStmt"))
    	}
    
    	pos := p.expect(token.GO)
    	call := p.parseCallExpr()
    	p.expectSemi()
    	if call == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

       * for APIs like {@link #whenAllComplete whenAllComplete(...)}{@code .}{@link
       * FutureCombiner#call(Callable, Executor) call(...)}, where it is easy to use a new input from
       * the {@code call} implementation but forget to add it to the arguments of {@code
       * whenAllComplete}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. plugin/pkg/admission/limitranger/admission_test.go

    	}
    	err = handler.Validate(context.TODO(), admission.NewAttributesRecord(&testPod, nil, api.Kind("Pod").WithVersion("version"), limitRange.Namespace, "testPod", api.Resource("pods").WithVersion("version"), "", admission.Update, &metav1.UpdateOptions{}, false, nil), nil)
    	if err != nil {
    		t.Errorf("Expected not to call limitranger actions on pod updates")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    const maxNameGenerationCreateAttempts = 8
    
    // Create inserts a new item according to the unique key from the object.
    // Note that registries may mutate the input object (e.g. in the strategy
    // hooks).  Tests which call this might want to call DeepCopy if they expect to
    // be able to examine the input and output objects for differences.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

       * for APIs like {@link #whenAllComplete whenAllComplete(...)}{@code .}{@link
       * FutureCombiner#call(Callable, Executor) call(...)}, where it is easy to use a new input from
       * the {@code call} implementation but forget to add it to the arguments of {@code
       * whenAllComplete}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
Back to top