Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 693 for Ressource (0.07 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/StringWagon.java

                throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException {
            Resource resource = inputData.getResource();
    
            String content = expectedContent.get(resource.getName());
    
            if (content != null) {
                resource.setContentLength(content.length());
                resource.setLastModified(System.currentTimeMillis());
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

    import jakarta.annotation.Resource;
    
    public class ElevateWordService {
    
        private static final Logger logger = LogManager.getLogger(ElevateWordService.class);
    
        @Resource
        protected ElevateWordToLabelBhv elevateWordToLabelBhv;
    
        @Resource
        protected ElevateWordBhv elevateWordBhv;
    
        @Resource
        protected LabelTypeBhv labelTypeBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacLogonInfo.java

                int extraSidCount = pacStream.readInt();
                int extraSidPointer = pacStream.readInt();
    
                // ID for resource groups domain (used with IDs to get SIDs)
                int resourceDomainIdPointer = pacStream.readInt();
    
                // Resource groups information
                int resourceGroupCount = pacStream.readInt();
                int resourceGroupPointer = pacStream.readInt();
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  4. cmd/bucket-lifecycle-handlers_test.go

    			t.Fatalf("Test %d: %s: Unable to marshal response body %s", i+1, instanceType, rec.Body.String())
    		}
    		if errorResponse.Resource != testCase.errorResponse.Resource {
    			t.Errorf("Test %d: %s: Expected the error resource to be `%s`, but instead found `%s`", i+1, instanceType, testCase.errorResponse.Resource, errorResponse.Resource)
    		}
    		if errorResponse.Message != testCase.errorResponse.Message {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/node/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/api/resource/generated.proto";
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/node/v1beta1";
    
    // Overhead structure represents the resource overhead associated with running a pod.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    public class RelatedContentService extends FessAppService {
    
        @Resource
        protected RelatedContentBhv relatedContentBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<RelatedContent> getRelatedContentList(final RelatedContentPager relatedContentPager) {
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. cmd/kms-handlers_test.go

    			asRoot: false,
    
    			policy: `{"Effect": "Allow",
    				"Action": ["kms:CreateKey"],
    				"Resource": ["arn:minio:kms:::second-new-test-*"] }`,
    
    			wantStatusCode: http.StatusOK,
    		},
    		{
    			name:   "create key as user set policy to non matching resource want forbidden",
    			method: http.MethodPost,
    			path:   kmsKeyCreatePath,
    			query:  map[string]string{"key-id": "third-new-test-key"},
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Aug 18 06:43:03 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

        @Resource
        protected QueryHelper queryHelper;
    
        @Resource
        protected QueryFieldConfig queryFieldConfig;
    
        @Resource
        protected RoleQueryHelper roleQueryHelper;
    
        @Resource
        protected UserInfoHelper userInfoHelper;
    
        @Resource
        protected OsddHelper osddHelper;
    
        @Resource
        protected PopularWordHelper popularWordHelper;
    
        @Resource
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

        //                                                                           =========
        @Resource
        private TimeManager timeManager;
        @Resource
        private AsyncManager asyncManager;
        @Resource
        private SessionManager sessionManager;
        @Resource
        private FessConfig fessConfig;
        @Resource
        private UserBhv userBhv;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

                if (request.getPath().isPresent()) {
                    Path path = request.getPath().get();
                    res = builder.build(path.toFile(), req);
                } else if (request.getSource().isPresent()) {
                    Source source = request.getSource().get();
                    ModelSource2 modelSource = new SourceWrapper(source);
                    res = builder.build(modelSource, req);
                } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top