Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 142 for Initialize (0.24 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    }
    
    // computeInitContainerActions sets the actions on the given changes that need
    // to be taken for the init containers. This includes actions to initialize the
    // init containers and actions to keep restartable init containers running.
    // computeInitContainerActions returns true if pod has been initialized.
    //
    // The actions include:
    // - Start the first init container that has not been started.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    if (transformerContextBuilder != null) {
                        ModelTransformerContext context = transformerContextBuilder.initialize(request, problems);
                        rawModel = this.transformer.transform(context, rawModel, pomFile);
                    }
                } catch (ModelTransformerException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        protected volatile boolean isBind = false;
    
        protected FessConfig fessConfig;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            fessConfig = ComponentUtil.getFessConfig();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	// "-unusedresult",
    }
    
    func runTest(ctx context.Context, cmd *base.Command, args []string) {
    	pkgArgs, testArgs = testFlags(args)
    	modload.InitWorkfile() // The test command does custom flag processing; initialize workspaces after that.
    
    	if cfg.DebugTrace != "" {
    		var close func() error
    		var err error
    		ctx, close, err = trace.Start(ctx, cfg.DebugTrace)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                try {
                    if (request.getTransformerContextBuilder() != null) {
                        TransformerContext context =
                                request.getTransformerContextBuilder().initialize(request, problems);
                        transformer.transform(pomFile.toPath(), context, rawModel);
                    }
                } catch (TransformerException e) {
                    problems.add(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      if (rewrite_subgraph_fn) {
        std::vector<OutputTensor> arg_source_tensors(args_by_src_.size());
        for (const auto& arg : args_by_src_) {
          arg_source_tensors.at(arg.second) = arg.first;
        }
        // Initialize the input and output permutations to the identity.
        std::vector<int> input_permutation(args_by_src_.size());
        std::iota(input_permutation.begin(), input_permutation.end(), 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

            ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        assert(old_return->getNumOperands() == op_->getNumResults());
        auto new_return_operands = llvm::to_vector<4>(old_return->getOperands());
        new_return_operands.resize(num_new_results_);
    
        // initialize return values for written resources to be the hoisted reads.
        for (Value resource : written_resources_) {
          const ResourceInfo& info = resources_[resource];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    	var initialized int32
    	if value {
    		initialized = 1
    	}
    	atomic.StoreInt32(&proxier.initialized, initialized)
    }
    
    func (proxier *Proxier) isInitialized() bool {
    	return atomic.LoadInt32(&proxier.initialized) > 0
    }
    
    // OnServiceAdd is called whenever creation of new service object is observed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // of list elements to initialize the output tensor list with.
      virtual Value GetNumElements(OpT op, ValueRange operands,
                                   PatternRewriter *rewriter) const = 0;
    
      // Rewrites the original op into `tf.fill`. The result tensor shape is
      // [num_element, element_shape]. All the values in the result tensor will be
      // initialized to 0.
      LogicalResult matchAndRewrite(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top