Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for commandList (0.91 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                }
            }
    
            public boolean isExecuted() {
                return executed.get();
            }
        }
    
        public void setCommandList(final List<String> commandList) {
            this.commandList = commandList;
        }
    
        public void setCommandTimeout(final long commandTimeout) {
            this.commandTimeout = commandTimeout;
        }
    
        public void setBaseDir(final File baseDir) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_thumbnail.xml

    	</component>
    	<component name="msofficeThumbnailGenerator" class="org.codelibs.fess.thumbnail.impl.CommandGenerator">
    		<property name="name">"msofficeThumbnailGenerator"</property>
    		<property name="commandList">
    			["${path}/generate-thumbnail",
    			"msoffice",
    			"${url}",
    			"${outputFile}"]
    		</property>
    		<property name="generatorList">
    			["${path}/generate-thumbnail"]
    		</property>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Oct 11 21:34:52 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInJavaIntegrationTest.groovy

                    ProcessGroovyMethodsExecute.execute(commandList);
                    ProcessGroovyMethodsExecute.execute(commandList, envpArray, project.file("test"));
                    ProcessGroovyMethodsExecute.execute(commandList, envpList, project.file("test"));
    
                    RuntimeExec e = new RuntimeExec();
                    e.exec("some string");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/os/exec/lp_windows_test.go

    			}
    		})
    	}
    }
    
    type commandTest struct {
    	name       string
    	PATH       []string
    	files      []string
    	dir        string
    	arg0       string
    	want       string
    	wantPath   string // the resolved c.Path, if different from want
    	wantErrDot bool
    	wantRunErr error
    }
    
    var commandTests = []commandTest{
    	// testing commands with no slash, like `a.exe`
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top