Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 620 for vexflag (0.15 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    }
    
    func (ab *AsmBuf) asmins(ctxt *obj.Link, cursym *obj.LSym, p *obj.Prog) {
    	ab.Reset()
    
    	ab.rexflag = 0
    	ab.vexflag = false
    	ab.evexflag = false
    	mark := ab.Len()
    	ab.doasm(ctxt, cursym, p)
    	if ab.rexflag != 0 && !ab.vexflag && !ab.evexflag {
    		// as befits the whole approach of the architecture,
    		// the rex prefix must appear before the first opcode byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vet/vetflag.go

    			strings.HasPrefix(arg, "--vettool=") {
    			vetTool = arg[strings.IndexByte(arg, '=')+1:]
    			return
    		}
    	}
    }
    
    // vetFlags processes the command line, splitting it at the first non-flag
    // into the list of flags and list of packages.
    func vetFlags(args []string) (passToVet, packageNames []string) {
    	parseVettoolFlag(args)
    
    	// Query the vet command for its flags.
    	var tool string
    	if vetTool == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/runtime/textflag.h

    // This file defines flags attached to various functions
    // and data objects. The compilers, assemblers, and linker must
    // all agree on these values.
    //
    // Keep in sync with src/cmd/internal/obj/textflag.go.
    
    // Don't profile the marked routine. This flag is deprecated.
    #define NOPROF	1
    // It is ok for the linker to get multiple of these symbols. It will
    // pick one of the duplicates to use.
    #define DUPOK	2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/internal/genflags/vetflag.go

    Russ Cox <******@****.***> 1643307048 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/textflag.go

    Than McIntosh <******@****.***> 1674763920 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/NtlmMessage.java

         *
         * @param flag
         *            The flag to test (i.e., <code>NTLMSSP_NEGOTIATE_OEM</code>).
         * @return A <code>boolean</code> indicating whether the flag is set.
         */
        public boolean getFlag ( int flag ) {
            return ( getFlags() & flag ) != 0;
        }
    
    
        /**
         * Sets or clears the specified flag.
         * 
         * @param flag
         *            The flag to set/clear (i.e.,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java

         *
         * @param flag The flag to test (i.e., <code>NTLMSSP_NEGOTIATE_OEM</code>).
         * @return A <code>boolean</code> indicating whether the flag is set.
         */
        public boolean getFlag(int flag) {
            return (getFlags() & flag) != 0;
        }
    
        /**
         * Sets or clears the specified flag.
         * 
         * @param flag The flag to set/clear (i.e.,
         * <code>NTLMSSP_NEGOTIATE_OEM</code>).
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/testflag.go

    	}
    	return f.abs
    }
    
    // vetFlag implements the special parsing logic for the -vet flag:
    // a comma-separated list, with distinguished values "all" and
    // "off", plus a boolean tracking whether it was set explicitly.
    //
    // "all" is encoded as vetFlag{true, false, nil}, since it will
    // pass no flags to the vet binary, and by default, it runs all
    // analyzers.
    type vetFlag struct {
    	explicit bool
    	off      bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/globalflags.go

    	"fmt"
    	"os"
    	"strings"
    
    	"github.com/spf13/pflag"
    
    	// libs that provide registration functions
    	"k8s.io/component-base/logs"
    	"k8s.io/component-base/version/verflag"
    )
    
    // AddGlobalFlags explicitly registers flags that libraries (glog, verflag, etc.) register
    // against the global flagsets from "flag" and "github.com/spf13/pflag".
    // We do this in order to prevent unwanted flags from leaking into the Kubelet's flagset.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/Type3Message.java

                passwordHash = NtlmUtil.getNTHash(password);
            }
    
            switch ( tc.getConfig().getLanManCompatibility() ) {
            case 0:
            case 1:
                if ( !getFlag(NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY) ) {
                    setLMResponse(getLMResponse(tc, type2, password));
                    setNTResponse(getNTResponse(tc, type2, passwordHash));
                }
                else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
Back to top