Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 265 for region (0.22 sec)

  1. 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)
  2. src/cmd/trace/pprof.go

    		})
    		var lastTimestamp trace.Time
    		var n int
    		// Select only the outermost regions.
    		for _, i := range intervals {
    			if lastTimestamp <= i.start {
    				intervals[n] = i // new non-overlapping region starts.
    				lastTimestamp = i.end
    				n++
    			}
    			// Otherwise, skip because this region overlaps with a previous region.
    		}
    		gToIntervals[g] = intervals[:n]
    	}
    	return gToIntervals, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.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. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    mlir::LogicalResult PropagateValuesConstraints(
        mlir::Region &region, const ClusteringPolicySet &policies,
        ValuesConstraintSet &constraints, bool resolve, bool emit_remarks) {
      // Propagate constraints for all operations in the region.
      llvm::SmallVector<Operation *> worklist;
      region.walk([&](Operation *op) { worklist.emplace_back(op); });
    
      // Propagate constraints only through operations inside the `region`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K 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. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        OptionalAttr<DictArrayAttr>:$res_attrs
      );
    
      let results = (outs);
    
      // When the regions is empty, the tfr.func is an external function and used
      // to model the element type constraints of the tf op. Otherwise, there is one
      // region containing the composition.
      let regions = (region VariadicRegion<AnyRegion>:$body);
    
      let skipDefaultBuilders = 1;
    
      let builders = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

                           bool wouldBeCloned) const final {
        return true;
      }
      // Returns true if the given region 'src' can be inlined into the region
      // 'dest' that is attached to an operation registered to the current dialect.
      bool isLegalToInline(Region *dest, Region *src, bool wouldBeCloned,
                           IRMapping &) const final {
        return true;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  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