Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 463 for LookUp (0.14 sec)

  1. src/cmd/compile/internal/ssa/poset.go

    		}
    		po.values[n.ID] = i
    		po.upushnew(n.ID, i)
    	} else {
    		po.upushnew(0, i)
    	}
    	return i
    }
    
    // lookup searches for a SSA value into the forest of DAGS, and return its node.
    // Constants are materialized on the fly during lookup.
    func (po *poset) lookup(n *Value) (uint32, bool) {
    	i, f := po.values[n.ID]
    	if !f && n.isGenericIntConst() {
    		po.newconst(n)
    		i, f = po.values[n.ID]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. internal/jwt/parser.go

    	if err != nil {
    		return err
    	}
    
    	var ok bool
    	claims.AccessKey, ok = claims.Lookup("accessKey")
    	if !ok {
    		claims.AccessKey, ok = claims.Lookup("sub")
    		if !ok {
    			return jwtgo.NewValidationError("accessKey/sub missing",
    				jwtgo.ValidationErrorClaimsInvalid)
    		}
    	}
    
    	// Lookup key from claims, claims may not be valid and may return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	}
    	if getCalls != 1 {
    		t.Errorf("Expected a live lookup of the namespace at t=forceLiveLookupTTL, got %d", getCalls)
    	}
    	getCalls = 0
    
    	// Ensure the live lookup expires
    	fakeClock.Step(time.Millisecond)
    
    	// verify create operations in the namespace don't force a live lookup after the timeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top