Questions tagged [explicit]

In C++ specifies constructors and conversion operators that don't allow implicit conversions or copy-initialization. In C# declares a user-defined type conversion operator that must be invoked with a cast. For MS SQL Server for-xml-EXPLICIT mode use the [for-xml-explicit] tag

405 questions
0
votes
2 answers

Define global symbol (Error)

I went through a couple of discussions to find the solution but none of them seem to be working in my case. I have the following piece of code print ("Choose from the following\n"); print ("op1 op2\n"); my $x = <>; chomp($x); print ("x is…
Rancho
  • 309
  • 4
  • 12
0
votes
2 answers

Java ByteArrayInputStream Implicit super constructor is undefined. Must explicitly invoke another constructor

everyone, I'm newbie. My purpose is to get the byte[] buf variable from ByteArrayInputStream by extends it, in this http://www.java2s.com/Open-Source/Android/android-core/platform-libcore/java/io/ByteArrayInputStream.java.htm tells that…
eta99
  • 15
  • 4
0
votes
0 answers

Explicit commit in Spring Batch

i'm working with spring batch with hibernate as data access layer. My job has tree steps. In the last step i need to do an explicit commit (flush) during my job inside an ItemWriter, because i have to read a database view that needs specific data…
stegada
  • 289
  • 1
  • 2
  • 9
0
votes
3 answers

Explicit Casting Problem

// The Structure of the Container and the items public interface IContainer where TItem : IItem { } public class AContainer : IContainer { } public interface IItem { } public class ItemA : IItem { } // Client…
jack-london
  • 1,599
  • 3
  • 21
  • 42
0
votes
2 answers

Selenium WebDriverWaits

In the following Selenium Explicit wait , I see the method until returns something like V for the method until(com.google.common.base.Function isTrue) My doubt is how they are referencing it to a element of type…
Fazy
  • 573
  • 1
  • 5
  • 16
0
votes
4 answers

Strange typenames and constructor in a template

I am trying to understand a template class in C++. First, I would like to understand what this line means: template > class matrix where columns and allocator are respectively…
Pippo
  • 1,543
  • 3
  • 21
  • 40
0
votes
1 answer

C++ Explicit Instantiation of a Function

I'm writing my own library for the fun of it and I've run into an issue. Here is my code. #include "utility/memory.h" using namespace libnate::utility; template void copy( T *src, T *dest, size_t size ) { for( size_t i = 0; i <…
csnate
  • 1,601
  • 4
  • 19
  • 31
0
votes
0 answers

Explicit DLL Linking with LoadLibrary and 2 DLLs in C++

this is my first post at stackoverflow and i`m starting with a problem. Im writing a gui application with qt in c++. At the moment I'm stuck on loading and saving dlls which were passed to me. For loading and saving i decided to set functions for…
0
votes
1 answer

asp.net Localized Resources Explicit Localization not loading localized files

Resources for asp.net for different cultures load when a file with same name exists but with the suffix language-country like for example fr-FR for France. Used this tutorial to create localized resources with explicit…
Miguel Domingos
  • 345
  • 1
  • 3
  • 17
0
votes
0 answers

Plot explicit cdf over ecdf

I have some data and I just plotted the empirical cumulative distribution using Ecdf like this: Ecdf(data) Now, I tried to adjust the parameters (lambda, mu, sigma) for a mixture of two normals to this data, and now I would like to plot the cdf of…
natorro
  • 2,793
  • 3
  • 19
  • 16
-1
votes
1 answer

C++ Explicit Conversion Constructor

I am trying to implement an explicit conversion constructor for an assignment and I am confused what is it I am required to do. I have a WordList containing a single element, and am to make this constructor explicit so I cannot do: WordList…
Jon
  • 2,249
  • 6
  • 26
  • 30
-1
votes
1 answer

Waiting for a value to be greater than or equal to a certain number in Python Selenium

i'm trying to make a program that waits for a certain value to be greater than or equal to a certain number and then do some actions. PATH = "C:\Program Files (x86)\chromedriver.exe" driver =…
neto
  • 19
  • 6
-1
votes
1 answer

Explicit wait get bypassed without error Selenium Python

I'm trying to make a bot that logs inside my account. After inserting psw and username I make my bot clicking on "I'm not a robot" recaptcha checkbox. After flagging the Recaptcha checkbox it could randomly appear a second Recaptcha, this time one…
neto
  • 19
  • 6
-1
votes
1 answer

How to fix "cannot convert"?

I got compile errors "cannot convert..", `"no instance of constructor..". I can't get what I did wrong. I tried to change the way of initialization of an object but it didn't help. Want to understand this better. Error C2440 '': cannot convert from…
Leeker
  • 29
  • 6
-1
votes
2 answers

what is need of explicit wait if we can set implicit wait for more amount of time at once?

we declared implicit Wait of 10 secs but an element takes more than that, say 20 seconds and sometimes may appears on 5 secs, so in this scenario, Explicit wait is declared. anytime implicit wait don't wait for the default time it will stop waiting…
1 2 3
26
27