Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for searchDisk (0.2 sec)

  1. pkg/volume/fc/fc_util_test.go

    				fcDisk: &fcDisk{
    					wwns: test.wwns,
    					lun:  test.lun,
    					io:   &fakeIOHandler{},
    				},
    				deviceUtil: util.NewDeviceHandler(util.NewIOHandler()),
    			}
    			devicePath, err := searchDisk(fakeMounter)
    			if test.expectError && err == nil {
    				t.Errorf("expected error but got none")
    			}
    			if !test.expectError && err != nil {
    				t.Errorf("got unexpected error: %s", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 23 08:36:01 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  2. pkg/volume/fc/fc_util.go

    }
    
    // Global volume device plugin dir
    func (util *fcUtil) MakeGlobalVDPDName(fc fcDisk) string {
    	return makeVDPDNameInternal(fc.plugin.host, fc.wwns, fc.lun, fc.wwids)
    }
    
    func searchDisk(b fcDiskMounter) (string, error) {
    	var diskIDs []string
    	var disk string
    	var dm string
    	io := b.io
    	wwids := b.wwids
    	wwns := b.wwns
    	lun := b.lun
    
    	if len(wwns) != 0 {
    		diskIDs = wwns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.searchlist;
    
    import static org.codelibs.fess.app.web.admin.searchlist.AdminSearchlistAction.getDoc;
    import static org.codelibs.fess.app.web.admin.searchlist.AdminSearchlistAction.validateFields;
    
    import java.util.Map;
    
    import javax.annotation.Resource;
    
    import org.apache.logging.log4j.LogManager;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/CreateBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.searchlist;
    
    import org.codelibs.fess.app.web.admin.searchlist.CreateForm;
    
    public class CreateBody extends CreateForm {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 789 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/EditBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.searchlist;
    
    import org.codelibs.fess.app.web.admin.searchlist.EditForm;
    
    public class EditBody extends EditForm {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 782 bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

    import io.restassured.path.json.JsonPath;
    
    /**
     * Integration Tests which need an execution of crawler
     * - /api/admin/joblog
     * - /api/admin/crawlinginfo
     * - /api/admin/failureurl
     * - /api/admin/searchlist
     * */
    @Tag("it")
    public class CrawlerLogTests extends CrawlTestBase {
        private static final Logger logger = LogManager.getLogger(CrawlerLogTests.class);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/SearchBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.searchlist;
    
    import org.codelibs.fess.app.web.admin.searchlist.ListForm;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    public class SearchBody extends ListForm {
    
        // `size` is an alias of `num`.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/searchlist/EditForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.searchlist;
    
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author shinsuke
     */
    public class EditForm extends CreateForm {
    
        public String id;
    
        @ValidateTypeFailure
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 950 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.searchlist;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class DeleteForm {
    
        @Size(max = 1000)
        public String q;
    
        @Required
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 878 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlist/CreateForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.searchlist;
    
    import java.util.Map;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author shinsuke
     */
    public class CreateForm {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top