- Sort Score
- Result 10 results
- Languages All
Results 981 - 990 of 2,745 for SET (0.47 sec)
-
impl/maven-core/src/main/java/org/apache/maven/resolver/RepositorySystemSessionFactory.java
*/ public interface RepositorySystemSessionFactory { /** * Creates "ready to use" session builder instance. The factory does not set up one thing: the * {@link org.eclipse.aether.repository.WorkspaceReader}s, that is caller duty to figure out. Workspace readers * should be set up as very last thing before using resolver session, that is built by invoking * {@link SessionBuilder#build()} method. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
tests/test_request_param_model_by_alias.py
assert response.status_code == 200, response.text assert response.json() == {"param": "value"} def test_cookie_model_with_alias(): client = TestClient(app) client.cookies.set("param_alias", "value") response = client.get("/cookie") assert response.status_code == 200, response.text assert response.json() == {"param": "value"} def test_query_model_with_alias_by_name():Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralTest.java
trans2GetDfsReferral = new Trans2GetDfsReferral(mockConfig, filename); // Set path field (inherited from parent) Field pathField = trans2GetDfsReferral.getClass().getSuperclass().getSuperclass().getDeclaredField("path"); pathField.setAccessible(true); pathField.set(trans2GetDfsReferral, filename); // When String result = trans2GetDfsReferral.toString();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11K bytes - Viewed (0) -
docs/sts/wso2.md
Using the above `id_token` we can perform an STS request to MinIO to get temporary credentials for MinIO API operations. MinIO STS API uses [JSON Web Key Set Endpoint](https://docs.wso2.com/display/IS541/JSON+Web+Key+Set+Endpoint) to validate if JWT is valid and is properly signed.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.7K bytes - Viewed (0) -
clause/association.go
// Association represents an association operation type Association struct { Association string // Association name Type AssociationOpType // Operation type Conditions []Expression // Filter conditions Set []Assignment // Assignment operations (for Update and Create) Values []interface{} // Values for Create operation } // AssociationAssigner is an interface for association operation providersRegistered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Fri Sep 12 05:42:26 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
} /** * Get the transport for this channel * * @return SMB transport */ public SmbTransport getTransport() { return transport; } /** * Set the transport for this channel * * @param transport SMB transport */ public void setTransport(SmbTransport transport) { this.transport = transport; } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupContext.java
package org.apache.maven.cling.invoker; import java.nio.file.Path; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import java.util.function.Consumer; import org.apache.maven.api.ProtoSession; import org.apache.maven.api.cli.InvokerException; import org.apache.maven.api.cli.InvokerRequest; import org.apache.maven.api.cli.Logger;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 5.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/StandardRowSortedTable.java
import com.google.common.annotations.J2ktIncompatible; import com.google.common.base.Supplier; import com.google.j2objc.annotations.WeakOuter; import java.util.Comparator; import java.util.Map; import java.util.Set; import java.util.SortedMap; import java.util.SortedSet; import org.jspecify.annotations.Nullable; /** * Implementation of {@code Table} whose iteration ordering across row keys is sorted by theirRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 4.4K bytes - Viewed (0) -
generics.go
} func (s setCreateOrUpdateG[T]) handleAssociationCreate(ctx context.Context, base *DB, op clause.Association) error { if len(op.Set) > 0 { return s.handleAssociationForOwners(base, ctx, func(owner T, assoc *Association) error { data := make(map[string]interface{}, len(op.Set)) for _, a := range op.Set { data[a.Column.Name] = a.Value } return assoc.Append(data) }, op.Association) }
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Sun Nov 02 14:09:18 UTC 2025 - 25.9K bytes - Viewed (0) -
statement.go
stmt.AddError(field.Set(stmt.Context, stmt.ReflectValue.Index(i), value)) } } else { stmt.AddError(field.Set(stmt.Context, stmt.ReflectValue.Index(stmt.CurDestIndex), value)) } case reflect.Struct: if !stmt.ReflectValue.CanAddr() { stmt.AddError(ErrInvalidValue) return } stmt.AddError(field.Set(stmt.Context, stmt.ReflectValue, value)) }
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Fri Sep 12 04:33:27 UTC 2025 - 20.9K bytes - Viewed (0)