Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 275 for Constraint (0.15 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * penalty of applying the batches is spread across threads so that the amortized cost is slightly
       * higher than performing just the operation without enforcing the capacity constraint.
       *
       * This implementation uses a per-segment queue to record a memento of the additions, removals,
       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

                                            elements.getType().getElementType());
      return elements.reshape(new_type);
    }
    
    // This assumes that the bias is of shape NxCx1x1 and doesn't require transpose
    // Its corresponding constraint is optimize_patterns.td:IsBiasShape()
    ElementsAttr ReshapeNCHWBiasToNHWC(Value v, Attribute a) {
      auto elements = mlir::cast<DenseElementsAttr>(a);
      auto shape = mlir::cast<ShapedType>(v.getType()).getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. build-logic-commons/build-platform/build.gradle.kts

    import groovy.lang.GroovySystem
    import org.gradle.util.internal.VersionNumber
    
    plugins {
        `java-platform`
    }
    
    group = "gradlebuild"
    
    description = "Provides a platform that constrains versions of external dependencies used by Gradle"
    
    // Here you should declare versions which should be shared by the different modules of buildSrc itself
    val javaParserVersion = "3.18.0"
    val groovyVersion = GroovySystem.getVersion()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    					rs = tidy
    				} else {
    					conflict := Conflict{
    						Path: mg.g.FindPath(func(m module.Version) bool {
    							return m.Path == "go" && m.Version == v
    						})[1:],
    						Constraint: module.Version{Path: "go", Version: ld.TidyGoVersion},
    					}
    					msg := conflict.Summary()
    					if cfg.BuildV {
    						msg = conflict.String()
    					}
    					ld.error(errors.New(msg))
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy
      // the spread constraint.
      // - DoNotSchedule (default) tells the scheduler not to schedule it.
      // - ScheduleAnyway tells the scheduler to schedule the pod in any location,
      //   but giving higher precedence to topologies that would help reduce the
      //   skew.
      // A constraint is considered "Unsatisfiable" for an incoming pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        as its predecessor. This is because the weight of cut edges is always
        minimized when the `Split` is with its predecessor. This colocation
        constraint will be used by the placer graph optimization to assign a device
        to the op.
    
        This pass should run in the export pipeline after tf-replicate-to-island so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy
    	// the spread constraint.
    	// - DoNotSchedule (default) tells the scheduler not to schedule it.
    	// - ScheduleAnyway tells the scheduler to schedule the pod in any location,
    	//   but giving higher precedence to topologies that would help reduce the
    	//   skew.
    	// A constraint is considered "Unsatisfiable" for an incoming pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/stdlib_test.go

    		"issue20529.go",  // types2 does not have constraints on stack size
    		"issue22200.go",  // types2 does not have constraints on stack size
    		"issue22200b.go", // types2 does not have constraints on stack size
    		"issue25507.go",  // types2 does not have constraints on stack size
    		"issue20780.go",  // types2 does not have constraints on stack size
    		"issue42058a.go", // types2 does not have constraints on channel element size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            endorseFrom2.targetComponent.nodes[0].ownStrictVersionConstraints != endorsedStrictVersions
        }
    
        def "uses empty strict version constraints object if there are no ancestor constraints"() {
            when:
            def edge = edge(root)
            def childNode = edge.targetComponent.nodes[0]
            collectOwnStrictVersions(root, [])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. pkg/util/smallset/smallset.go

    //
    //	At 1000 items, it is roughly 5x slower (30ns vs 5ns).
    type Set[T constraints.Ordered] struct {
    	items []T
    }
    
    // NewPresorted creates a new Set with the given items.
    // If items is not sorted or contains duplicates, this gives undefined behavior; use New instead.
    func NewPresorted[T constraints.Ordered](items ...T) Set[T] {
    	return Set[T]{items: items}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top