Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for genCommand (0.19 sec)

  1. pkg/collateral/control.go

    		if commands[n].Name() == help {
    			continue
    		}
    
    		count++
    	}
    
    	g.genFrontMatter(cmd, count)
    	for _, n := range names {
    		if commands[n].Name() == help {
    			continue
    		}
    
    		g.genCommand(commands[n])
    		_ = g.genConfigFile(commands[n].Flags())
    	}
    
    	g.genVars(cmd, p.SelectEnv)
    	g.genMetrics(p.SelectMetric)
    
    	f, err := os.Create(path)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    
            if ( this.getCommand() != SMB_COM_NT_TRANSACT_SECONDARY ) {
                dst[ dstIndex++ ] = this.maxSetupCount;
            }
            else {
                dst[ dstIndex++ ] = (byte) 0x00; // Reserved
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

                // 2* setupCount
                this.parameterOffset += this.setupCount * 2;
                this.parameterOffset += 2; // ByteCount
    
                if ( this.getCommand() == SMB_COM_TRANSACTION && isResponse() == false ) {
                    this.parameterOffset += stringWireLength(this.name, this.parameterOffset);
                }
    
                this.pad1 = pad(this.parameterOffset);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/BuildCommandOnly.java

     */
    public abstract class BuildCommandOnly implements DaemonCommandAction {
    
        @Override
        public void execute(DaemonCommandExecution execution) {
            Command command = execution.getCommand();
            if (!(command instanceof Build)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

                FileUtil.writeBytes(file.getAbsolutePath(), data);
                return file;
            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        private String getCommand(final File scriptFile) {
            if (File.separator.equals("/")) {
                // Unix
                return "sh " + scriptFile.getAbsolutePath() + " $INPUT_FILE $OUTPUT_FILE";
            } else {
                // Windows
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/HandleInvalidateVirtualFileSystem.java

        }
    
        @Override
        public void execute(DaemonCommandExecution execution) {
            if (execution.getCommand() instanceof InvalidateVirtualFileSystemAfterChange) {
                InvalidateVirtualFileSystemAfterChange command = (InvalidateVirtualFileSystemAfterChange) execution.getCommand();
                gradleUserHomeScopeServiceRegistry.getCurrentServices().ifPresent(currentServices -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 14:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/HandleStop.java

        @Override
        public void execute(DaemonCommandExecution execution) {
            if (execution.getCommand() instanceof Stop) {
                listenerBroadcast.onExpirationEvent(new DaemonExpirationResult(DaemonExpirationStatus.IMMEDIATE_EXPIRE, EXPIRATION_REASON));
                execution.getConnection().completed(new Success(null));
            } else if (execution.getCommand() instanceof StopWhenIdle) {
                hangShutdownForTesting();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ForkingGradleHandle.java

                durationMeasurement.start();
            }
            return this;
        }
    
        private void checkDistributionExists() {
            //noinspection ResultOfMethodCallIgnored
            new TestFile(getExecHandle().getCommand()).getParentFile().assertIsDir();
        }
    
        private ExecHandle buildExecHandle() {
            AbstractExecHandleBuilder builder = execHandleFactory.create();
            assert builder != null;
            return builder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

            super(config, command, name);
            this.andx = andx;
            if ( andx != null ) {
                this.andxCommand = (byte) andx.getCommand();
            }
        }
    
    
        protected AndXServerMessageBlock ( Configuration config, byte command ) {
            this(config, command, null);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/ForkingGradleHandleTest.groovy

            1 * execResult.rethrowFailure()
            1 * execResult.getExitValue() >> FAILURE_EXIT_VALUE
            0 * resultAssertion.execute(_)
            1 * execHandle.getDirectory() >> EXEC_HANDLE_DIR
            1 * execHandle.getCommand() >> EXEC_HANDLE_CMD
            1 * execHandle.getArguments() >> EXEC_HANDLE_ARGS
            1 * execResult.toString() >> executionResultMessage
            def t = thrown(UnexpectedBuildFailure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top