Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 603 for Region (0.12 sec)

  1. src/internal/trace/traceviewer/http.go

    </ul>
    
    <h2>User-defined tasks and regions</h2>
    <p>
      The trace API allows a target program to annotate a <a
      href='https://pkg.go.dev/runtime/trace#Region'>region</a> of code
      within a goroutine, such as a key function, so that its performance
      can be analyzed.
    
      <a href='https://pkg.go.dev/runtime/trace#Log'>Log events</a> may be
      associated with a region to record progress and relevant values.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. pkg/api/pod/warnings_test.go

    				`spec.nodeSelector[beta.kubernetes.io/os]: deprecated since v1.14; use "kubernetes.io/os" instead`,
    				`spec.nodeSelector[failure-domain.beta.kubernetes.io/region]: deprecated since v1.17; use "topology.kubernetes.io/region" instead`,
    				`spec.nodeSelector[failure-domain.beta.kubernetes.io/zone]: deprecated since v1.17; use "topology.kubernetes.io/zone" instead`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  3. src/runtime/mpagealloc.go

    // first-fit approach.
    //
    // Each entry in the radix tree is a summary that describes three properties of
    // a particular region of the address space: the number of contiguous free pages
    // at the start and end of the region it represents, and the maximum number of
    // contiguous free pages found anywhere in that region.
    //
    // Each level of the radix tree is stored as one contiguous array, which represents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top