Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for aas (0.05 sec)

  1. src/net/interface_windows.go

    		}
    		if l <= uint32(len(b)) {
    			return nil, os.NewSyscallError("getadaptersaddresses", err)
    		}
    	}
    	var aas []*windows.IpAdapterAddresses
    	for aa := (*windows.IpAdapterAddresses)(unsafe.Pointer(&b[0])); aa != nil; aa = aa.Next {
    		aas = append(aas, aa)
    	}
    	return aas, nil
    }
    
    // If the ifindex is zero, interfaceTable returns mappings of all
    // network interfaces. Otherwise it returns a mapping of a specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/net/dnsconfig_windows.go

    		ndots:    1,
    		timeout:  5 * time.Second,
    		attempts: 2,
    	}
    	defer func() {
    		if len(conf.servers) == 0 {
    			conf.servers = defaultNS
    		}
    	}()
    	aas, err := adapterAddresses()
    	if err != nil {
    		return
    	}
    
    	for _, aa := range aas {
    		// Only take interfaces whose OperStatus is IfOperStatusUp(0x01) into DNS configs.
    		if aa.OperStatus != windows.IfOperStatusUp {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		for i, p := range inst.Prefix {
    			if p == PrefixPT || p == PrefixPN {
    				inst.Prefix[i] |= PrefixImplicit
    			}
    		}
    	}
    
    	switch inst.Op {
    	case AAA, AAS, CBW, CDQE, CLC, CLD, CLI, CLTS, CMC, CPUID, CQO, CWD, DAA, DAS,
    		FDECSTP, FINCSTP, FNCLEX, FNINIT, FNOP, FWAIT, HLT,
    		ICEBP, INSB, INSD, INSW, INT, INTO, INVD, IRET, IRETQ,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/anames.go

    // Code generated by stringer -i aenum.go -o anames.go -p x86; DO NOT EDIT.
    
    package x86
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "AAA",
    	"AAD",
    	"AAM",
    	"AAS",
    	"ADCB",
    	"ADCL",
    	"ADCQ",
    	"ADCW",
    	"ADCXL",
    	"ADCXQ",
    	"ADDB",
    	"ADDL",
    	"ADDPD",
    	"ADDPS",
    	"ADDQ",
    	"ADDSD",
    	"ADDSS",
    	"ADDSUBPD",
    	"ADDSUBPS",
    	"ADDW",
    	"ADJSP",
    	"ADOXL",
    	"ADOXQ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	XSAVES
    	XSAVES64
    	XSETBV
    	XTEST
    )
    
    const maxOp = XTEST
    
    var opNames = [...]string{
    	AAA:             "AAA",
    	AAD:             "AAD",
    	AAM:             "AAM",
    	AAS:             "AAS",
    	ADC:             "ADC",
    	ADD:             "ADD",
    	ADDPD:           "ADDPD",
    	ADDPS:           "ADDPS",
    	ADDSD:           "ADDSD",
    	ADDSS:           "ADDSS",
    	ADDSUBPD:        "ADDSUBPD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.vox"/>
      </mime-type>
      <mime-type type="application/x-authorware-map">
        <glob pattern="*.aam"/>
      </mime-type>
      <mime-type type="application/x-authorware-seg">
        <glob pattern="*.aas"/>
      </mime-type>
    
      <mime-type type="application/x-bcpio">
        <glob pattern="*.bcpio"/>
      </mime-type>
    
      <mime-type type="application/x-berkeley-db">
        <_comment>Berkeley DB</_comment>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top