Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 232 for RESIZE (0.24 sec)

  1. src/main/assemblies/files/fess.in.sh

    #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djavax.net.ssl.trustStorePassword=changeit"
    
    # min and max heap sizes should be set to the same value to avoid
    # stop-the-world GC pauses during resize, and so that we can lock the
    # heap in memory on startup to prevent any of it from being swapped
    # out.
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xms${FESS_MIN_MEM}"
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xmx${FESS_MAX_MEM}"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/node_expander_test.go

    			if test.expectError && err == nil {
    				t.Errorf("For test %s, expected error but got none", test.name)
    			}
    
    			if test.expectResizeCall != expansionResponse.resizeCalledOnPlugin {
    				t.Errorf("For test %s, expected resize called %t, got %t", test.name, test.expectResizeCall, expansionResponse.resizeCalledOnPlugin)
    			}
    			if test.assumeResizeOpAsFinished != expansionResponse.assumeResizeFinished {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/c/c_test_util.cc

      outputs_.clear();
      for (TF_Operation* o : outputs) {
        outputs_.emplace_back(TF_Output{o, 0});
      }
      output_values_.resize(outputs_.size());
    }
    
    void CSession::SetOutputs(const std::vector<TF_Output>& outputs) {
      ResetOutputValues();
      outputs_ = outputs;
      output_values_.resize(outputs_.size());
    }
    
    void CSession::SetTargets(std::initializer_list<TF_Operation*> targets) {
      targets_.clear();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.cc

        backends.back()->Init();
      }
      return backends;
    }
    
    absl::Status TacModule::Run() {
      // Construct all backends.
      backends_ = InstantiateBackends();
      const_backends_.resize(backends_.size());
      for (const auto& backend : backends_)
        const_backends_.emplace_back(backend.get());
    
      if (!importer_) {
        return absl::Status(absl::StatusCode::kFailedPrecondition,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	if restartCPULim || restartCPUReq || restartMemLim {
    		// resize policy requires this container to restart
    		changes.ContainersToKill[kubeContainerStatus.ID] = containerToKillInfo{
    			name:      kubeContainerStatus.Name,
    			container: &pod.Spec.Containers[containerIdx],
    			message:   fmt.Sprintf("Container %s resize requires restart", container.Name),
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    		defer ctx.conn.Close()
    		// Read the terminal resize requests, storing them in actualTerminalSizes
    		for i := 0; i < numSizeQueue; i++ {
    			actualTerminalSize := <-ctx.resizeChan
    			actualTerminalSizes = append(actualTerminalSizes, actualTerminalSize)
    		}
    	}))
    	defer spdyServer.Close()
    	// Create StreamTranslatorHandler, which points upstream to fake SPDY server with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/op_or_arg_name_mapper.cc

                                               GetDashSeparator().str();
      llvm::SmallString<64> probe_name(prefix_name);
      const int probe_prefix_size = probe_name.size();
      while (true) {
        probe_name.resize(probe_prefix_size);
        // TODO(jpienaar): Subtract one so that the initial suffix is 0 instead
        // of 1.
        // TODO(jpienaar): Switch to radix 36 and update tests.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradients.cc

              "Cannot compute the partial derivative for node '",
              input.node()->name(),
              "' as it's unreachable from the output node(s).");
        }
      }
      grad_outputs_->clear();
      grad_outputs_->resize(inputs_.size());
    
      std::unordered_set<int> output_nodes;
      output_nodes.reserve(outputs_.size());
      for (size_t i = 0; i < outputs_.size(); ++i) {
        output_nodes.insert(outputs_[i].node()->id());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. tensorflow/c/eager/unified_api_testutil.cc

          func_inputs.reserve(inputs.size());
          TF_RETURN_IF_ERROR(
              CreateParamsForInputs(func_ctx.get(), inputs, &func_inputs));
          std::vector<AbstractTensorHandle*> model_outputs;
          model_outputs.resize(outputs.size());
          TF_RETURN_IF_ERROR(model(func_ctx.get(), absl::MakeSpan(func_inputs),
                                   absl::MakeSpan(model_outputs)));
          for (auto func_input : func_inputs) {
            func_input->Unref();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/kubelet/container/testing/runtime_mock.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "AttachContainer", ctx, id, stdin, stdout, stderr, tty, resize)
    	ret0, _ := ret[0].(error)
    	return ret0
    }
    
    // AttachContainer indicates an expected call of AttachContainer.
    func (mr *MockAttacherMockRecorder) AttachContainer(ctx, id, stdin, stdout, stderr, tty, resize any) *gomock.Call {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top