Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 236 for multiplier (0.16 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            "counter" | "SubCountingService"
            ""        | "SubCountingService"
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "cannot inject shared build service without a name when multiple services exist"() {
            given:
            serviceImplementation()
            // unnamed service implies type-based lookup
            customTaskUsingServiceViaProperty("@${ServiceReference.name}")
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    	// to avoid unbounded cardinality in metrics. If this is not set, it may be automatically filled in later.
    	// There should only be multiple reasons if the push request is the result of two distinct triggers, rather than
    	// classifying a single trigger as having multiple reasons.
    	Reason ReasonStats
    
    	// Delta defines the resources that were added or removed as part of this push request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

        }
        return %0 : tensor<f32>
      }
    ```
    ### `-tf-executor-split-into-island-per-op`
    
    _Transform from TF control dialect to TF executor dialect._
    
    Splits an island with multiple ops into multiple islands (one per op). Does
    not create any control dependencies between new islands, and does not
    propagate control dependencies that potentially existed between the old
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    You should note that the `TestReport` type combines the results from multiple test tasks and needs to aggregate the results of individual test classes. This means that if a given test class is executed by multiple test tasks, then the test report will include executions of that class, but it can be hard to distinguish individual executions of that class and their output.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

       </artifact>
    </component>
    ----
    
    There are multiple reasons why you'd like to do so:
    
    1. an official site doesn't publish _secure_ checksums (SHA-256, SHA-512) but publishes multiple insecure ones (MD5, SHA1).
    While it's easy to fake a MD5 checksum and hard but possible to fake a SHA1 checksum, it's harder to fake both of them for the same artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

      void (*cleanup)(TF_Filesystem* filesystem);
    
      /// Creates a new random access read-only file from given `path`.
      ///
      /// After this call `file` may be concurrently accessed by multiple threads.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if `file` was updated.
      ///   * Must set `status` to `TF_NOT_FOUND` if `path` doesn't point to an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            dep.selector == moduleId('group-two', 'artifact-two', '1.2')
            dep.scope == MavenScope.Test
            hasDefaultDependencyArtifact(dep)
        }
    
        def "uses parent pom dependency management section with multiple versions of same dependency"() {
            given:
            def parent = tmpDir.file("parent.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    If "scale_after_normalization" is true, this tensor will be multiplied
    with the normalized tensor.}]>:$gamma,
    
        F32Attr:$variance_epsilon,
        BoolAttr:$scale_after_normalization
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            given:
            _ * parent.get(Long) >> 11L
    
            when:
            registry.get(Long).is(registry.get(Long))
    
            then:
            ServiceLookupException e = thrown()
            e.message.contains("Multiple services of type Long available in DefaultServiceRegistry:")
            e.message.contains('- Service Long at DefaultServiceRegistryTest$ConflictingDecoratorMethods.createLong()')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    					pkg: "runtime",
    				})
    		}
    	}
    
    	if t.raceDetectorSupported() {
    		t.registerRaceTests()
    	}
    
    	if goos != "android" && !t.iOS() {
    		// Only start multiple test dir shards on builders,
    		// where they get distributed to multiple machines.
    		// See issues 20141 and 31834.
    		nShards := 1
    		if os.Getenv("GO_BUILDER_NAME") != "" {
    			nShards = 10
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top