Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,161 for command (0.03 sec)

  1. src/main/java/jcifs/internal/CommonServerMessageBlock.java

         */
        long getMid ();
    
    
        /**
         * @param mid
         */
        void setMid ( long mid );
    
    
        /**
         * @return the command
         */
        int getCommand ();
    
    
        /**
         * @param command
         */
        void setCommand ( int command );
    
    
        /**
         * @param uid
         */
        void setUid ( int uid );
    
    
        /**
         * @param extendedSecurity
         */
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 2.3K bytes
    - Viewed (0)
  2. src/packaging/common/scripts/postrm

            . "$FESS_ENV_FILE"
        fi
    fi
    
    if [ "$REMOVE_SERVICE" = "true" ]; then
        if command -v systemctl >/dev/null; then
            systemctl --no-reload disable fess.service > /dev/null 2>&1 || true
        fi
    
        if command -v chkconfig >/dev/null; then
            chkconfig --del fess 2> /dev/null || true
        fi
    
        if command -v update-rc.d >/dev/null; then
            update-rc.d fess remove >/dev/null || true
        fi
    fi
    
    Registered: 2025-05-26 08:04
    - Last Modified: 2015-12-10 01:24
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java

         */
        protected ServerMessageBlock2Request ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @param config
         * @param command
         */
        public ServerMessageBlock2Request ( Configuration config, int command ) {
            super(config, command);
        }
    
    
        @Override
        public ServerMessageBlock2Request<T> ignoreDisconnect () {
            return this;
        }
    
    
        @Override
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 6.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/DirectExecutor.java

    @GwtCompatible
    enum DirectExecutor implements Executor {
      INSTANCE;
    
      @Override
      public void execute(Runnable command) {
        command.run();
      }
    
      @Override
      public String toString() {
        return "MoreExecutors.directExecutor()";
      }
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 03:10
    - 1.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/DirectExecutor.java

    @GwtCompatible
    enum DirectExecutor implements Executor {
      INSTANCE;
    
      @Override
      public void execute(Runnable command) {
        command.run();
      }
    
      @Override
      public String toString() {
        return "MoreExecutors.directExecutor()";
      }
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 03:10
    - 1.1K bytes
    - Viewed (0)
  6. ci/official/requirements_updater/README.md

    Note, since it is still `pip` and `pip-compile` tools used under the hood, so
    most of the command line arguments and features supported by those tools will be
    acknowledged by the Bazel requirements updater command as well. For example, if
    you wish the updater to consider pre-release versions simply pass `--pre`
    argument to the bazel command:
    
    ```
    Registered: 2025-05-27 12:39
    - Last Modified: 2024-06-29 00:19
    - 3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java

                    }
                } else {
                    openFunction = OPEN_FN_OPEN;
                }
            }
        }
    
        int getBatchLimit( byte command ) {
            return command == SMB_COM_READ_ANDX ? BATCH_LIMIT : 0;
        }
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    
            writeInt2( flags, dst, dstIndex );
    Registered: 2025-05-25 00:10
    - Last Modified: 2019-03-22 21:10
    - 5.7K bytes
    - Viewed (0)
  8. bin/build_ztunnel.sh

      echo "Environment variables not set. Make sure you run through the makefile (\`make init\`) rather than directly."
      exit 1
    fi
    
    # Gets the download command supported by the system (currently either curl or wget)
    DOWNLOAD_COMMAND=""
    function set_download_command () {
      # Try curl.
      if command -v curl > /dev/null; then
        if curl --version | grep Protocols  | grep https > /dev/null; then
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-04-02 21:46
    - 5K bytes
    - Viewed (0)
  9. mvnw

          JAVACMD="$JAVA_HOME/jre/sh/java"
        else
          JAVACMD="$JAVA_HOME/bin/java"
        fi
      else
        JAVACMD="$(
          \unset -f command 2>/dev/null
          \command -v java
        )"
      fi
    fi
    
    if [ ! -x "$JAVACMD" ]; then
      echo "Error: JAVA_HOME is not defined correctly." >&2
      echo "  We cannot execute $JAVACMD" >&2
      exit 1
    fi
    
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-10-14 22:24
    - 10.9K bytes
    - Viewed (0)
  10. istioctl/pkg/proxystatus/proxystatus.go

    		}
    	}()
    	data, err := io.ReadAll(file)
    	if err != nil {
    		return nil, err
    	}
    	return data, nil
    }
    
    func StableXdsStatusCommand(ctx cli.Context) *cobra.Command {
    	cmd := XdsStatusCommand(ctx)
    	unstableFlags := []string{}
    	cmd.PreRunE = func(cmd *cobra.Command, args []string) error {
    		for _, flag := range unstableFlags {
    			if cmd.PersistentFlags().Changed(flag) {
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-01-03 03:03
    - 5.8K bytes
    - Viewed (0)
Back to top