Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,265 for Calling (0.18 sec)

  1. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.h

          : xla_compiler_(options) {}
    
      // Compiles a Tensorflow `function` into an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result` by calling
      // XlaCompiler::CompileFunction.
      Status Compile(const XlaCompiler::CompileOptions& options,
                     const NameAttrList& function,
                     absl::Span<const XlaArgument> args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz.txt

    # Test that running a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test noop_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    # Test that fuzzing a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test -fuzz=Fuzz -fuzztime=1x noop_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginIntegrationTest.groovy

            succeeds(":test:unitTestClasses")
            file("main/build/classes/java/main").assertHasDescendants("Main.class")
            file("tests/build/classes/java/unitTest").assertHasDescendants("Test.class")
        }
    
        def "calling withSourcesJar is deprecated when the java plugin is not applied"() {
            given:
            buildFile << """
                plugins {
                    id 'java-base'
                }
    
                sourceSets {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionAccess.java

     */
    public interface ResolutionAccess {
    
        /**
         * Get the owner of the resolution.
         */
        ResolutionHost getHost();
    
        /**
         * Get the request attributes for this resolution. Calling this method will lock-in the
         * request attributes from further mutation but will not perform resolution.
         */
        ImmutableAttributes getAttributes();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/ListProperty.java

        /**
         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #value(Iterable)} with a <code>null</code> argument.
         * </p>
         */
        @Override
        ListProperty<T> unset();
    
        /**
         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #convention(Iterable)} with a <code>null</code> argument.
         * </p>
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedModelValue.java

        /**
         * Updates the current value. The function is passed the current value or {@code null} if there is no value, and the function's return value is
         * used as the new value.
         *
         * <p>The calling thread must own the mutable state from which the value is calculated (via {@link ModelContainer#fromMutableState(Function)}). At most a single thread
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pkg/apis/certificates/fuzzer/fuzzer.go

    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(obj *certificates.CertificateSigningRequestSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			obj.Usages = []certificates.KeyUsage{certificates.UsageKeyEncipherment}
    			obj.SignerName = "example.com/custom-sample-signer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:15 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ArtifactResolutionResult.java

         */
        Set<ComponentResult> getComponents();
    
        /**
         * <p>Return a set of {@link ComponentResult} instances representing all successfully resolved components.
         *
         * <p>Calling this method is the same as calling {@link #getComponents()} and filtering the resulting set for elements of type {@link ComponentArtifactsResult}.
         *
         * @return the set of all successfully resolved components
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:42:35 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultMutationGuardTest.groovy

    @Subject(DefaultMutationGuard)
    class DefaultMutationGuardTest extends Specification {
        final MutationGuard guard = new DefaultMutationGuard()
    
        def target = new Object()
    
        def "does not throw exception when calling a disallowed method when allowed using #methodUnderTest(#callableClass.type)"() {
            def callable = callableClass.newInstance(this)
    
            when:
            ensureExecuted(guard."${methodUnderTest}"(callable))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_client.go

    	nodeID string,
    	maxVolumePerNode int64,
    	accessibleTopology map[string]string,
    	err error) {
    	klog.V(4).InfoS(log("calling NodeGetInfo rpc"))
    
    	var getNodeInfoError error
    	nodeID, maxVolumePerNode, accessibleTopology, getNodeInfoError = c.nodeGetInfoV1(ctx)
    	if getNodeInfoError != nil {
    		klog.InfoS("Error calling CSI NodeGetInfo()", "err", getNodeInfoError.Error())
    	}
    	return nodeID, maxVolumePerNode, accessibleTopology, getNodeInfoError
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
Back to top