Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 266 for getVars (0.2 sec)

  1. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    	return pl
    }
    
    // New initializes a new plugin and returns it.
    func New(_ context.Context, plArgs runtime.Object, h framework.Handle) (framework.Plugin, error) {
    	args, err := getArgs(plArgs)
    	if err != nil {
    		return nil, err
    	}
    	pl := &NodeAffinity{
    		handle: h,
    	}
    	if args.AddedAffinity != nil {
    		if ns := args.AddedAffinity.RequiredDuringSchedulingIgnoredDuringExecution; ns != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/tools/op_quant_spec_getters_gen.cc

      llvm::Regex coeff_index_trait_regex{"AffineOpCoefficient<(-?[0-9]*),"};
      llvm::Regex fixed_uniform_trait_regex{
          "FixedResultUniformScale<([0-9]+).*(true|false)>"};
      emitSourceFileHeader("Generated Ops Quant Spec Getters", os);
    
      // Retrieve all the definitions derived from Op definition and sort by record
      // name.
      std::vector<Record *> defs = records.getAllDerivedDefinitions("Op");
      llvm::sort(defs, LessRecord());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 11:18:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    func New(_ context.Context, plArgs runtime.Object, h framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	if h.SnapshotSharedLister() == nil {
    		return nil, fmt.Errorf("SnapshotSharedlister is nil")
    	}
    	args, err := getArgs(plArgs)
    	if err != nil {
    		return nil, err
    	}
    	if err := validation.ValidatePodTopologySpreadArgs(nil, &args); err != nil {
    		return nil, err
    	}
    	pl := &PodTopologySpread{
    		parallelizer:       h.Parallelizer(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/Hexdump.java

                c[ci++] = ' ';
                c[ci++] = ' ';
                c[ci++] = '|';
                System.arraycopy( d, 0, c, ci, 16 );
                ci += 16;
                c[ci++] = '|';
                NL.getChars( 0, NL_LENGTH, c, ci );
                ci += NL_LENGTH;
            } while( si < length );
    
            ps.println( c );
        }
    
    /** 
     * This is an alternative to the <code>java.lang.Integer.toHexString</cod>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinInternalFilteringTest.kt

                "Method" to "$containingType.foo()",
                "Method" to "$containingType.fooExt(java.lang.String)",
                "Method" to "$containingType.fooExt(int)",
                "Method" to "$containingType.getBar()",
                "Method" to "$containingType.getBarExt(java.lang.String)",
                "Method" to "$containingType.getBazar()",
                "Method" to "$containingType.getBazarExt(int)",
            ) + (if (isEnum) listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 06:57:51 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/process/JavaExecSpec.java

            getMainClass().set(main);
            return this;
        }
    
        /**
         * Returns the arguments passed to the main class to be executed.
         */
        @Nullable @Optional @Input
        List<String> getArgs();
    
        /**
         * Adds args for the main class to be executed.
         *
         * @param args Args for the main class.
         *
         * @return this
         */
        JavaExecSpec args(Object... args);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

        @Override
        public Property<String> getMainClass() {
            return mainClass;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public List<String> getArgs() {
            return javaExecSpec.getArgs();
        }
    
        /**
         * Parses an argument list from {@code args} and passes it to {@link #setArgs(List)}.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/ClSQLException.java

         * @return メッセージコード
         */
        public String getMessageCode() {
            return messageCode;
        }
    
        /**
         * 引数の配列を返します。
         *
         * @return 引数の配列
         */
        public Object[] getArgs() {
            return args;
        }
    
        /**
         * SQLを返します。
         *
         * @return SQL
         */
        public String getSql() {
            return sql;
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

                                  TF::XlaCallModuleOp xla_call_module_op) {
      SmallVector<Type> arg_types;
      SmallVector<Location> arg_locs;
      for (const Value arg : xla_call_module_op.getArgs()) {
        arg_types.push_back(arg.getType());
        arg_locs.push_back(arg.getLoc());
      }
    
      SmallVector<Type> output_types;
      for (const Value output : xla_call_module_op.getOutput()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

                  preceding_op)) {
            if (auto q_op = llvm::dyn_cast_or_null<quantfork::QuantizeCastOp>(
                    dq_op.getArg().getDefiningOp())) {
              Operation* q_op_input = q_op.getArg().getDefiningOp();
              is_weight_constant =
                  q_op_input && q_op_input->hasTrait<OpTrait::ConstantLike>();
            }
          }
    
          if (!is_weight_constant) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top