Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for SetFlag (0.24 sec)

  1. src/cmd/internal/goobj/objfile.go

    	binary.LittleEndian.PutUint32(s[4:], w.stringOff(x))
    }
    
    func (s *Sym) SetABI(x uint16)   { binary.LittleEndian.PutUint16(s[8:], x) }
    func (s *Sym) SetType(x uint8)   { s[10] = x }
    func (s *Sym) SetFlag(x uint8)   { s[11] = x }
    func (s *Sym) SetFlag2(x uint8)  { s[12] = x }
    func (s *Sym) SetSiz(x uint32)   { binary.LittleEndian.PutUint32(s[13:], x) }
    func (s *Sym) SetAlign(x uint32) { binary.LittleEndian.PutUint32(s[17:], x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            reconnect();
            if (message == null) {
                message = new Type1Message();
                if (LM_COMPATIBILITY > 2) {
                    message.setFlag(NtlmFlags.NTLMSSP_REQUEST_TARGET, true);
                }
            } else {
                String domain = DEFAULT_DOMAIN;
                String user = Type3Message.getDefaultUser();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                if ( message == null ) {
                    message = new Type1Message(this.transportContext);
                    if ( this.transportContext.getConfig().getLanManCompatibility() > 2 ) {
                        message.setFlag(NtlmFlags.NTLMSSP_REQUEST_TARGET, true);
                    }
                }
                else if ( this.transportContext.getCredentials() instanceof NtlmPasswordAuthentication ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            String getName()
    
            void setName(String name)
        }
    
        @Managed
        static interface WithInheritedPropertiesFromGrandparent extends WithInheritedProperties {
            Boolean getFlag()
    
            void setFlag(Boolean flag)
        }
    
        def "extracts properties from multiple levels of inheritance"() {
            when:
            def properties = extract(WithInheritedPropertiesFromGrandparent).properties
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/objfile.go

    	}
    	if s.Size > cutoff {
    		w.ctxt.Diag("%s: symbol too large (%d bytes > %d bytes)", s.Name, s.Size, cutoff)
    	}
    	o := &w.tmpSym
    	o.SetName(name, w.Writer)
    	o.SetABI(abi)
    	o.SetType(uint8(s.Type))
    	o.SetFlag(flag)
    	o.SetFlag2(flag2)
    	o.SetSiz(uint32(s.Size))
    	o.SetAlign(align)
    	o.Write(w.Writer)
    }
    
    func (w *writer) Hash64(s *LSym) {
    	if !s.ContentAddressable() || len(s.R) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    				// used to reach the service). This may be changed in the
    				// future.
    				tx.Add(&knftables.Set{
    					Name: epInfo.affinitySetName,
    					Type: ipvX_addr,
    					Flags: []knftables.SetFlag{
    						// The nft docs say "dynamic" is only
    						// needed for sets containing stateful
    						// objects (eg counters), but (at least on
    						// RHEL8) if we create the set without
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vet/vetflag.go

    Russ Cox <******@****.***> 1702995705 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top