Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 213 for spcs (0.04 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    import org.gradle.api.internal.project.ProjectStateRegistry;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.cache.internal.BinaryStore;
    import org.gradle.cache.internal.Store;
    import org.gradle.internal.build.BuildState;
    import org.gradle.internal.component.model.DependencyMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMissingScriptIntegrationTest.groovy

            when:
            configurationCacheRun 'ok'
    
            then:
            configCache.assertStateLoaded()
    
            where:
            missingScriptsSpec << MissingScriptFixture.specs()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/publish/build.gradle.kts

        api(libs.groovy)
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":base-services-groovy")) {
            because("Required for Specs")
        }
        implementation(project(":functional"))
    
        implementation(libs.commonsLang)
        implementation(libs.gson)
        implementation(libs.guava)
    
        testImplementation(testFixtures(project(":core")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/BUILD

        "@com_google_absl//absl/types:optional",
    ]
    
    # Linked by tensorflow core, without registration of jit compilation passes.
    cc_library(
        name = "xla_ops_no_jit_rewrite_registration",
        srcs = ["xla_ops.cc"],
        hdrs = ["xla_ops.h"],
        deps = XLA_OPS_DEPS + [
            "//tensorflow/compiler/jit:device_compilation_cache",
            "//tensorflow/compiler/jit:device_compilation_profiler",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

      module_op.walk([](Operation* op) { op->removeAttr(kAttrMapAttribute); });
    
      // Perform selective quantization. Iterates over the quantization specs and
      // applies quantization methods to each matched lifted function.
      for (const QuantizationSpec& spec : quantization_specs_.specs()) {
        if (failed(ApplyQuantizationSpec(spec, module_op))) {
          signalPassFailure();
          return;
        }
      }
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/internal/trace/event/go122/event.go

    )
    
    // EventString returns the name of a Go 1.22 event.
    func EventString(typ event.Type) string {
    	if int(typ) < len(specs) {
    		return specs[typ].Name
    	}
    	return fmt.Sprintf("Invalid(%d)", typ)
    }
    
    func Specs() []event.Spec {
    	return specs[:]
    }
    
    var specs = [...]event.Spec{
    	// "Structural" Events.
    	EvEventBatch: event.Spec{
    		Name: "EventBatch",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildLogicChangesIntegrationTest.groovy

            then:
            outputContains fixture.expectedOutputAfterChange
            configurationCache.assertStateLoaded()
    
            where:
            fixtureSpec << BuildLogicChangeFixture.specs()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    	runTest := func(t framework.TestContext, f func(t framework.TestContext, src echo.Instance, dst echo.Instance, opt echo.CallOptions)) {
    		svcs := apps.All
    		for _, src := range svcs {
    			src := src
    			t.NewSubTestf("from %v", src.Config().Service).RunParallel(func(t framework.TestContext) {
    				for _, dst := range svcs {
    					dst := dst
    					t.NewSubTestf("to %v", dst.Config().Service).RunParallel(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildScriptChangesIntegrationTest.groovy

            outputDoesNotContain fixture.expectedOutputAfterChange
            configurationCache.assertStateLoaded()
    
            where:
            scriptChangeSpec << ScriptChangeFixture.specs()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FilteredFileCollectionExecutionTimeValueTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.file
    
    import org.gradle.api.specs.Spec
    import spock.lang.Specification
    
    import static org.gradle.api.internal.file.TestFiles.fileCollectionFactory
    
    class FilteredFileCollectionExecutionTimeValueTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 08:16:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top