Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 856 for Initialize (0.23 sec)

  1. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

        protected static final String SIMILAR_DOC_HASH_PREFIX = "$";
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            try {
                final TikaExtractor tikaExtractor = ComponentUtil.getComponent("tikaExtractor");
                if (tikaExtractor != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cadvisor_stats_provider.go

    		if !isPodManagedContainer(&cinfo) {
    			continue
    		}
    		ref := buildPodRef(cinfo.Spec.Labels)
    
    		// Lookup the PodStats for the pod using the PodRef. If none exists,
    		// initialize a new entry.
    		podStats, found := podToStats[ref]
    		if !found {
    			podStats = &statsapi.PodStats{PodRef: ref}
    			podToStats[ref] = podStats
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	adc.volumeAttachmentSynced = volumeAttachmentInformer.Informer().HasSynced
    
    	if err := adc.volumePluginMgr.InitPlugins(plugins, prober, adc); err != nil {
    		return nil, fmt.Errorf("could not initialize volume plugins for Attach/Detach Controller: %w", err)
    	}
    
    	adc.broadcaster = record.NewBroadcaster(record.WithContext(ctx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminGroup_AdminGroupEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminPathmap_AdminPathmapEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java

        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
            return asEditHtml().useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java

        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
            return asEditHtml().useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

        protected int count = 1;
    
        protected Cache<String, CrawlingConfig> crawlingConfigCache;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            crawlingConfigCache = CacheBuilder.newBuilder().maximumSize(100).expireAfterWrite(10, TimeUnit.MINUTES).build();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        protected final JsonFactory jsonFactory = JacksonFactory.getDefaultInstance();
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            ComponentUtil.getSsoManager().register(this);
        }
    
        @Override
        public LoginCredential getLoginCredential() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. cluster/gce/gci/audit_policy_test.go

    	c := ManifestTestCase{
    		t:                t,
    		kubeHome:         baseDir,
    		manifestFuncName: fmt.Sprintf("create-master-audit-policy %s", policyFile),
    	}
    	defer c.tearDown()
    
    	// Initialize required environment variables.
    	c.mustInvokeFunc(
    		kubeAPIServerEnv{KubeHome: c.kubeHome},
    		[]string{"configure-helper.sh"},
    		"base.template",
    		"testdata/kube-apiserver/base.template",
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
Back to top