- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 5,584 for ession (0.08 sec)
-
impl/maven-core/lifecycle-executor.txt
<artifactId>maven-resources-plugin</artifactId> <version>1.0</version</version> <executions> <execution> <goals> <goal>process</goal> </goals> </execution> </executions> </plugin> . . . </plugins>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
try ( SmbTreeHandleInternal treeHandle = (SmbTreeHandleInternal) f.getTreeHandle(); SmbSessionInternal session = treeHandle.getSession().unwrap(SmbSessionInternal.class) ) { assertNotNull(session); try ( SmbTransportInternal transport = session.getTransport().unwrap(SmbTransportInternal.class) ) { assertNotNull(transport);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
docs/en/docs/tutorial/sql-databases.md
### Create the Tables We then add a function that uses `SQLModel.metadata.create_all(engine)` to **create the tables** for all the *table models*. {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[21:22] hl[21:22] *} ### Create a Session Dependency
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 09 19:44:42 UTC 2024 - 14.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
user.put("session.rootDirectory", invokerRequest.rootDirectory().toString()); user.put("session.topDirectory", invokerRequest.topDirectory().toString()); Map<String, String> system = new HashMap<>(invokerRequest.systemProperties()); this.session = ProtoSession.create(user, system); } public Logger logger;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java
/** * Interface used to locate the root directory for a given project. * * The root locator is usually looked up from the plexus container. * One notable exception is the computation of the early {@code session.rootDirectory} * property which happens very early. The implementation used in this case * will be discovered using the JDK service mechanism. * * The default implementation will look for a {@code .mvn} child directory
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/VersionConstraint.java
* <p> * Note: only one, this method or {@link #getVersionRange()} method must return non-{@code null} value. */ @Nullable Version getRecommendedVersion(); /** * Determines whether the specified version is contained within this constraint. * * @param version the version to test, must not be {@code null}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2.5K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/DistributionManagementArtifactRelocationSource.java
private static final Logger LOGGER = LoggerFactory.getLogger(DistributionManagementArtifactRelocationSource.class); @Override public Artifact relocatedTarget( RepositorySystemSession session, ArtifactDescriptorResult artifactDescriptorResult, Model model) { DistributionManagement distMgmt = model.getDistributionManagement(); if (distMgmt != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/KerberosTest.java
SmbTreeHandleInternal th = (SmbTreeHandleInternal) f.getTreeHandle(); SmbSessionInternal session = (SmbSessionInternal) th.getSession() ) { Assume.assumeTrue("Not SMB2", th.isSMB2()); f.exists(); session.reauthenticate(); f.exists(); } } @Test public void testSessionExpiration () throws Exception {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 11.5K bytes - Viewed (0) -
schema/field_test.go
"birthday": time.Now(), "active": f, } for k, v := range newValues { if err := userSchema.FieldsByDBName[k].Set(context.Background(), reflectValue, v); err != nil { t.Errorf("no error should happen when assign value to field %v, but got %v", k, err) } } newValues["updated_at"] = time.Time{} newValues["active"] = false checkField(t, userSchema, reflectValue, newValues) // test valuer and other type
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Feb 19 09:02:53 UTC 2022 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
log.trace("Reusing existing session " + ssn); } return ssn.acquire(); } else if ( log.isTraceEnabled() ) { log.trace("Existing session " + ssn + " does not match " + tf.getCredentials()); } } /* logoff old sessions */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)