Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for Prioritize (0.2 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_passes.td

            "The device type used by TF2XLA fallback. Must be specified if "
            "use-tf2xla-fallback is true, otherwise not used">,
        Option<"prefer_tf2xla_", "prefer-tf2xla", "bool",
            /*default=*/"false",
            "Prioritize tf2xla fallback legalization over MLIR legalization "
            "patterns">,
      ];
    
      let constructor = "mlir::mhlo::createLegalizeTFPass()";
      let dependentDialects = [
        "arith::ArithDialect",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/validation/validation_test.go

    					Enabled: []config.Plugin{{Name: "CustomSort"}},
    				},
    				Bind: config.PluginSet{
    					Enabled: []config.Plugin{{Name: "CustomBind"}},
    				},
    			},
    		}},
    		Extenders: []config.Extender{{
    			PrioritizeVerb: "prioritize",
    			Weight:         1,
    		}},
    	}
    
    	invalidParallelismValue := validConfig.DeepCopy()
    	invalidParallelismValue.Parallelism = 0
    
    	resourceNameNotSet := validConfig.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                    },
                    toDependencies(method.getDeclaringClass(), method));
    
            Priority priority = method.getAnnotation(Priority.class);
            if (priority != null) {
                binding = binding.prioritize(priority.value());
            }
    
            return binding;
        }
    
        public static <T> Binding<T> bindingFromConstructor(Key<T> key, Constructor<T> constructor) {
            constructor.setAccessible(true);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. pilot/pkg/credentials/kube/multicluster.go

    	agg.controllers = []*CredentialsController{}
    	agg.authController = *cc
    	if clusterID != m.configCluster {
    		// If the request cluster is not the config cluster, we will append it and use it for auth
    		// This means we will prioritize the proxy cluster, then the config cluster for credential lookup
    		// Authorization will always use the proxy cluster.
    		agg.controllers = append(agg.controllers, *cc)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/scheduler/extender_test.go

    				EvaluatedNodes: 2,
    				FeasibleNodes:  2,
    			}, // node2 has higher score
    			name: "test 7",
    		},
    		{
    			// Scheduler is expected to not send pod to extender in
    			// Filter/Prioritize phases if the extender is not interested in
    			// the pod.
    			//
    			// If scheduler sends the pod by mistake, the test would fail
    			// because of the errors from errorPredicateExtender and/or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

     * java.util.LinkedHashMap}. Generally speaking, this class reduces object allocation and memory
     * consumption at the price of moderately increased constant factors of CPU. Only use this class
     * when there is a specific reason to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     */
    @J2ktIncompatible // no support for access-order mode in LinkedHashMap delegate
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CompactLinkedHashSet.java

     * java.util.LinkedHashSet}. Generally speaking, this class reduces object allocation and memory
     * consumption at the price of moderately increased constant factors of CPU. Only use this class
     * when there is a specific reason to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    class CompactLinkedHashSet<E extends @Nullable Object> extends CompactHashSet<E> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 21:38:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactLinkedHashSet.java

     * java.util.LinkedHashSet}. Generally speaking, this class reduces object allocation and memory
     * consumption at the price of moderately increased constant factors of CPU. Only use this class
     * when there is a specific reason to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    class CompactLinkedHashSet<E extends @Nullable Object> extends CompactHashSet<E> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 21:38:59 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/initorder.go

    	x.index, y.index = j, i
    }
    
    func (a nodeQueue) Less(i, j int) bool {
    	x, y := a[i], a[j]
    
    	// Prioritize all constants before non-constants. See go.dev/issue/66575/.
    	_, xConst := x.obj.(*Const)
    	_, yConst := y.obj.(*Const)
    	if xConst != yConst {
    		return xConst
    	}
    
    	// nodes are prioritized by number of incoming dependencies (1st key)
    	// and source order (2nd key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/go/types/initorder.go

    	x.index, y.index = j, i
    }
    
    func (a nodeQueue) Less(i, j int) bool {
    	x, y := a[i], a[j]
    
    	// Prioritize all constants before non-constants. See go.dev/issue/66575/.
    	_, xConst := x.obj.(*Const)
    	_, yConst := y.obj.(*Const)
    	if xConst != yConst {
    		return xConst
    	}
    
    	// nodes are prioritized by number of incoming dependencies (1st key)
    	// and source order (2nd key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top