Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 172 for addpad (0.15 sec)

  1. pkg/controller/endpointslice/endpointslice_controller.go

    	pod := endpointsliceutil.GetPodFromDeleteAction(obj)
    	if pod != nil {
    		c.addPod(pod)
    	}
    }
    
    func (c *Controller) addNode() {
    	c.topologyQueue.Add(topologyQueueItemKey)
    }
    
    func (c *Controller) updateNode(old, cur interface{}) {
    	oldNode := old.(*v1.Node)
    	curNode := cur.(*v1.Node)
    
    	// LabelTopologyZone may be added by cloud provider asynchronously after the Node is created.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    // PreFilterExtensions returns prefilter extensions, pod add and remove.
    func (pl *InterPodAffinity) PreFilterExtensions() framework.PreFilterExtensions {
    	return pl
    }
    
    // AddPod from pre-computed data in cycleState.
    func (pl *InterPodAffinity) AddPod(ctx context.Context, cycleState *framework.CycleState, podToSchedule *v1.Pod, podInfoToAdd *framework.PodInfo, nodeInfo *framework.NodeInfo) *framework.Status {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loong64/asm.go

    	// loong64 ELF relocation (endian neutral)
    	//		offset     uint64
    	//		symreloc   uint64  // The high 32-bit is the symbol, the low 32-bit is the relocation type.
    	//		addend     int64
    
    	elfsym := ld.ElfSymForReloc(ctxt, r.Xsym)
    	switch r.Type {
    	default:
    		return false
    	case objabi.R_ADDR, objabi.R_DWARFSECREF:
    		switch r.Size {
    		case 4:
    			out.Write64(uint64(sectoff))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/inference/inference_metrics_pass_test.cc

        TF_ASSERT_OK_AND_ASSIGN(module_,
                                GetMlirModuleFromString(module_string, &context_));
    
        pm_ = std::make_unique<mlir::PassManager>(&context_);
        pm_->addPass(CreateInferenceMetricsPass());
      }
      mlir::LogicalResult Run() { return pm_->run(module_.get()); }
    
     private:
      MLIRContext context_;
      OwningOpRef<ModuleOp> module_;
      std::unique_ptr<mlir::PassManager> pm_;
    };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. test-site/activator

            printf "%s\n" "$arg"
          fi
        done
        echo ""
      }
    
      exec "$@"
    }
    addJava () {
      dlog "[addJava] arg = '$1'"
      java_args=( "${java_args[@]}" "$1" )
    }
    addApp () {
      dlog "[addApp] arg = '$1'"
      sbt_commands=( "${app_commands[@]}" "$1" )
    }
    addResidual () {
      dlog "[residual] arg = '$1'"
      residual_args=( "${residual_args[@]}" "$1" )
    }
    addDebugger () {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * comment: <br>
         * one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000<br>
         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
         * The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

        LOG(ERROR) << "Couldn't import flatbuffer to MLIR.";
        return absl::InternalError("Couldn't import flatbuffer to MLIR.");
      }
    
      PassManager pm((*module)->getName(), OpPassManager::Nesting::Implicit);
      pm.addPass(TFL::CreateDenseToSparsePass());
    
      if (failed(pm.run(module.get()))) {
        LOG(ERROR) << "Failed to sparsify: "
                   << statusHandler.ConsumeStatus().message();
        return absl::InternalError(absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_lift_quantizable_spots_as_functions_with_quantization_specs.cc

          ParseTextProto(GetQuantizationSpecsTextProto(quantization_specs_));
      if (!quantization_specs.ok()) {
        signalPassFailure();
        return;
      }
    
      pass_manager.addPass(
          CreateLiftQuantizableSpotsAsFunctionsPass(*quantization_specs));
    
      if (failed(pass_manager.run(getOperation()))) {
        signalPassFailure();
      }
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/snapshot.go

    	for _, pod := range pods {
    		nodeName := pod.Spec.NodeName
    		if _, ok := nodeNameToInfo[nodeName]; !ok {
    			nodeNameToInfo[nodeName] = framework.NewNodeInfo()
    		}
    		nodeNameToInfo[nodeName].AddPod(pod)
    	}
    	imageExistenceMap := createImageExistenceMap(nodes)
    
    	for _, node := range nodes {
    		if _, ok := nodeNameToInfo[node.Name]; !ok {
    			nodeNameToInfo[node.Name] = framework.NewNodeInfo()
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_test.cc

      passes(&pm);
    
      return pm.run(module.get()).succeeded();
    }
    
    std::function<void(PassManager*)> legalizeTFPasses() {
      return [](PassManager* pm) {
        pm->addPass(mlir::mhlo::createLegalizeTFPass(
            /* legalize_chlo=*/true, llvm::StringRef("gpu/xpu"),
            /* prefer_tf2xla=*/false));
      };
    }
    
    TEST(XlaLegalizeTest, IllegalOp) {
      constexpr char kMlirIllegalOpStr[] = R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top