Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 473 for Region (0.13 sec)

  1. src/cmd/trace/tasks.go

    		return fmt.Sprintf("%s -> %s", old, new)
    	case trace.EventRegionBegin:
    		return fmt.Sprintf("region %q begin", ev.Region().Type)
    	case trace.EventRegionEnd:
    		return fmt.Sprintf("region %q end", ev.Region().Type)
    	case trace.EventTaskBegin:
    		t := ev.Task()
    		return fmt.Sprintf("task %q (D %d, parent %d) begin", t.Type, t.ID, t.Parent)
    	case trace.EventTaskEnd:
    		return "task end"
    	case trace.EventLog:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.test.fixtures.dsl.GradleDsl
    
    class TestSuitesKotlinDSLDependenciesIntegrationTest extends AbstractIntegrationSpec {
        // region basic functionality
        def 'suites do not share dependencies by default'() {
            given:
            buildKotlinFile << """
                plugins {
                    `java-library`
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

     */
    
    package org.gradle.testing.testsuites.dependencies
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class TestSuitesGroovyDSLDependenciesIntegrationTest extends AbstractIntegrationSpec {
        // region basic functionality
        def 'suites do not share dependencies by default'() {
            given:
            buildFile << """
            plugins {
              id 'java-library'
            }
    
            ${mavenCentralRepository()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    				},
    			},
    		},
    		{
    			name: "beta region label matched",
    			Pod:  createPodWithVolume("pod_1", "PVC_2"),
    			Node: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:   "host1",
    					Labels: map[string]string{v1.LabelFailureDomainBetaRegion: "us-west1", "uselessLabel": "none"},
    				},
    			},
    		},
    		{
    			name: "beta region label doesn't match",
    			Pod:  createPodWithVolume("pod_1", "PVC_2"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

        OperationState state(item.getLoc(), item.getName());
        types.assign(item.result_type_begin(), item.result_type_end());
        state.addTypes(types);
        for (Region& region : item.getRegions()) {
          state.addRegion()->takeBody(region);
        }
        // Assign existing operands for item.
        operands.assign(item.operand_begin(), item.operand_end());
    
        // Collect defining ops for existing operands.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      let description = [{
        This pass extracts a CPU computation cluster with `_xla_outside_compilation`
        annotation, which denotes ops that should be run on CPU/host, from a device cluster.
        Each outside compilation cluster is moved to
        a tf_device.parallel_execute region. The device cluster is also moved to a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

                 << result.getResultNumber()
                 << ", resource type results are expected to have been "
                    "canonicalized away for region based control flow ops";
        }
      }
      for (Region& region : op.getRegions()) {
        if (failed(DecomposeStackOpsInternal(&region.front(), module,
                                             data_var_to_size_var,
                                             decomposed_partitioned_call_callees)))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

            isVersionLockFile(testFileLock, false)
    
            where:
            mode << [Shared, Exclusive]
        }
    
        @Requires(UnitTestPreconditions.NoMandatoryFileLockOnOpen)
        def "writes lock file with info region while exclusive lock is open"() {
            expect:
            def lock = createLock(Exclusive)
            isVersionLockFileWithInfoRegion(testFileLock, true)
            lock.writeFile {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

        public ResolutionFailureHandler(ResolutionFailureDescriberRegistry failureDescriberRegistry) {
            this.defaultFailureDescribers = failureDescriberRegistry;
        }
    
        // region Artifact Variant Selection Failures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      // regions attached to the op's in the block.
      if (metadata_map.empty()) {
        for (Operation& op : *block) {
          for (Region& region : op.getRegions()) {
            if (!llvm::hasSingleElement(region))
              return op.emitOpError("Expected single block region");
            if (failed(FormClustersInBlock(&region.front(), side_effect_analysis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
Back to top