- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 866 for SERVICE (0.09 sec)
-
cmd/signature-v4-parser.go
type credentialHeader struct { accessKey string scope struct { date time.Time region string service string request string } } // Return scope string. func (c credentialHeader) getScope() string { return strings.Join([]string{ c.scope.date.Format(yyyymmdd), c.scope.region, c.scope.service, c.scope.request, }, SlashSeparator) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 9.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactManager.java
import org.apache.maven.api.Artifact; import org.apache.maven.api.ProducedArtifact; import org.apache.maven.api.Service; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * * @since 4.0.0 */ @Experimental public interface ArtifactManager extends Service { /** * Returns the path of the file previously associated to this artifact
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 1.5K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/api.go
RoutingPreferences []string `json:"routingPreferences"` HealthPolicy string `json:"healthPolicy"` } type ZtunnelEndpoint struct { WorkloadUID string `json:"workloadUid"` Service string `json:"service"` Address string `json:"address,omitempty"` Port map[uint16]uint16 `json:"port"` } type ZtunnelService struct { Name string `json:"name"`
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 30 17:26:39 UTC 2024 - 6.1K bytes - Viewed (0) -
cmd/typed-errors.go
// to use a LDAP command. var errNoSuchUserLDAPWarn = errors.New("Specified user does not exist. If you meant a user in LDAP please use command under `mc idp ldap`") // error returned when service account is not found var errNoSuchServiceAccount = errors.New("Specified service account does not exist") // error returned when temporary account is not found var errNoSuchTempAccount = errors.New("Specified temporary account does not exist")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 28 17:14:16 UTC 2024 - 5.8K bytes - Viewed (0) -
helm/minio/templates/statefulset.yaml
apiVersion: v1 kind: Service metadata: name: {{ template "minio.fullname" . }}-svc labels: app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} spec: publishNotReadyAddresses: true clusterIP: None ports: - name: {{ $scheme }} port: {{ .Values.service.port }} protocol: TCP
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 11 12:21:05 UTC 2024 - 10.4K bytes - Viewed (0) -
istioctl/pkg/completion/completion.go
if err != nil { return nil, err } var serviceNameList []string for _, service := range serviceList.Items { if toComplete == "" || strings.HasPrefix(service.Name, toComplete) { serviceNameList = append(serviceNameList, service.Name) } } return serviceNameList, nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 4.9K bytes - Viewed (0) -
cmd/iam-store.go
if scred.ParentUser != parentUser { return updatedAt, fmt.Errorf("%w: the service account access key is taken by another user", errIAMServiceAccountNotAllowed) } return updatedAt, fmt.Errorf("%w: the service account access key already taken", errIAMServiceAccountNotAllowed) } // Parent user must not be a service account. if u, found := cache.iamUsersMap[parentUser]; found && u.Credentials.IsServiceAccount() {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0) -
cmd/admin-handlers-idp-ldap.go
writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } writeSuccessResponseJSON(w, encryptedData) } // AddServiceAccountLDAP adds a new service account for provided LDAP username or DN // // PUT /minio/admin/v3/idp/ldap/add-service-account func (a adminAPIHandlers) AddServiceAccountLDAP(w http.ResponseWriter, r *http.Request) { ctx, cred, opts, createReq, targetUser, APIError := commonAddServiceAccount(r, true)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Sep 21 11:35:40 UTC 2024 - 19.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImplTest.java
import org.codelibs.fess.crawler.container.StandardCrawlerContainer; import org.codelibs.fess.crawler.helper.MemoryDataHelper; import org.codelibs.fess.crawler.service.impl.DataServiceImpl; import org.codelibs.fess.crawler.service.impl.UrlFilterServiceImpl; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class UrlFilterImplTest extends PlainTestCase {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolver.java
import org.apache.maven.api.RemoteRepository; import org.apache.maven.api.Service; import org.apache.maven.api.Session; import org.apache.maven.api.annotations.Experimental; /** * Resolves the artifact, i.e. download the file when required and attach it to the artifact * * @since 4.0.0 */ @Experimental public interface ArtifactResolver extends Service { /** * @param request {@link ArtifactResolverRequest}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 3.2K bytes - Viewed (0)