Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 486 for LookUp (0.16 sec)

  1. src/runtime/mspanset.go

    }
    
    // spanSetSpinePointer represents a pointer to a contiguous block of atomic.Pointer[spanSetBlock].
    type spanSetSpinePointer struct {
    	p unsafe.Pointer
    }
    
    // lookup returns &s[idx].
    func (s spanSetSpinePointer) lookup(idx uintptr) *atomic.Pointer[spanSetBlock] {
    	return (*atomic.Pointer[spanSetBlock])(add(s.p, goarch.PtrSize*idx))
    }
    
    // spanSetBlockPool is a global pool of spanSetBlocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix.go

    	}
    }
    
    func (conf *resolverConfig) releaseSema() {
    	<-conf.ch
    }
    
    func (r *Resolver) lookup(ctx context.Context, name string, qtype dnsmessage.Type, conf *dnsConfig) (dnsmessage.Parser, string, error) {
    	if !isDomainName(name) {
    		// We used to use "invalid domain name" as the error,
    		// but that is a detail of the specific lookup mechanism.
    		// Other lookups might allow broader name syntax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            return container;
        }
    
        @Deprecated
        public Object lookup(String role) throws ComponentLookupException {
            return container.lookup(role);
        }
    
        @Deprecated
        public Object lookup(String role, String roleHint) throws ComponentLookupException {
            return container.lookup(role, roleHint);
        }
    
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho.go

    	if !*FlagD {
    		// must match doMachoLink below
    		s1 := ldr.SymSize(ldr.Lookup(".machorebase", 0))
    		s2 := ldr.SymSize(ldr.Lookup(".machobind", 0))
    		s3 := ldr.SymSize(ldr.Lookup(".machosymtab", 0))
    		s4 := ldr.SymSize(ctxt.ArchSyms.LinkEditPLT)
    		s5 := ldr.SymSize(ctxt.ArchSyms.LinkEditGOT)
    		s6 := ldr.SymSize(ldr.Lookup(".machosymstr", 0))
    		s7 := ldr.SymSize(ldr.Lookup(".machocodesig", 0))
    
    		if ctxt.LinkMode != LinkExternal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    	// of validation.
    	Punycode *Profile = punycode
    
    	// Lookup is the recommended profile for looking up domain names, according
    	// to Section 5 of RFC 5891. The exact configuration of this profile may
    	// change over time.
    	Lookup *Profile = lookup
    
    	// Display is the recommended profile for displaying domain names.
    	// The configuration of this profile may change over time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/gcimporter_test.go

    					continue // ignore synthetic names like .inittask and .dict.*
    				}
    				seen[name] = true
    
    				importedObj := imported.Scope().Lookup(name)
    				got := types.ObjectString(importedObj, types.RelativeTo(imported))
    				got = sanitizeObjectString(got)
    
    				checkedObj := checked.Scope().Lookup(name)
    				if checkedObj == nil {
    					t.Fatalf("imported object %q was not type-checked", name)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

      mlir::SymbolTable symbol_table(
          session_initializer->getParentOfType<ModuleOp>());
    
      for (auto sym_ref : session_initializer.getInitializers()) {
        auto init_func_op = symbol_table.lookup<mlir::func::FuncOp>(
            mlir::cast<FlatSymbolRefAttr>(sym_ref).getValue());
    
        if (!init_func_op)
          return session_initializer.emitOpError()
                 << "the initializer function does not exist";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. src/internal/concurrent/hashtriemap.go

    	for hashShift != 0 {
    		hashShift -= nChildrenLog2
    
    		n := i.children[(hash>>hashShift)&nChildrenMask].Load()
    		if n == nil {
    			return *new(V), false
    		}
    		if n.isEntry {
    			return n.entry().lookup(key, ht.keyEqual)
    		}
    		i = n.indirect()
    	}
    	panic("internal/concurrent.HashMapTrie: ran out of hash bits while iterating")
    }
    
    // LoadOrStore returns the existing value for the key if present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/arch.go

    	return word == "JMP" || word == "CALL" || word == "Call" || word == "Br" || word == "BrIf"
    }
    
    func archX86(linkArch *obj.LinkArch) *Arch {
    	register := make(map[string]int16)
    	// Create maps for easy lookup of instruction names etc.
    	for i, s := range x86.Register {
    		register[s] = int16(i + x86.REG_AL)
    	}
    	// Pseudo-registers.
    	register["SB"] = RSB
    	register["FP"] = RFP
    	register["PC"] = RPC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    	// of validation.
    	Punycode *Profile = punycode
    
    	// Lookup is the recommended profile for looking up domain names, according
    	// to Section 5 of RFC 5891. The exact configuration of this profile may
    	// change over time.
    	Lookup *Profile = lookup
    
    	// Display is the recommended profile for displaying domain names.
    	// The configuration of this profile may change over time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top