Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for LookUp (0.19 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	// We should now see the waypoint service IP
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.3"))[0].Address.GetWorkload().Waypoint.GetAddress().Address,
    		netip.MustParseAddr("10.0.0.2").AsSlice())
    
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.4"))[0].Address.GetWorkload().Waypoint.GetAddress().Address,
    		netip.MustParseAddr("10.0.0.3").AsSlice())
    
    	// Lookup for service VIP should return Workload and Service AddressInfo objects
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            "lookup" and "output".
        """
        with session.Session(graph=ops.Graph()) as sess:
          input_vocabs_placeholder, lookup_tensor, output_tensor = (
              self._create_vocab_table_lookup_model_tf1(sess)
          )
    
          inputs = {'input_vocabs': input_vocabs_placeholder}
          outputs = {
              'lookup': lookup_tensor,
              'output': output_tensor,
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    		{"concreteMethod", lookup("t").(*Named).Method(0)},
    		{"recv", lookup("t").(*Named).Method(0).Signature().Recv()},
    		{"mParam", lookup("t").(*Named).Method(0).Signature().Params().At(0)},
    		{"mResult", lookup("t").(*Named).Method(0).Signature().Results().At(0)},
    
    		// Interface methods
    		{"interfaceMethod", lookup("i").Underlying().(*Interface).Method(0)},
    
    		// Function type fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    	lookup := func(tname string) Type { return pkg.Scope().Lookup(tname).Type() }
    	var (
    		EmptyIface   = lookup("EmptyIface").Underlying().(*Interface)
    		I            = lookup("I").(*Named)
    		II           = I.Underlying().(*Interface)
    		C            = lookup("C").(*Named)
    		CI           = C.Underlying().(*Interface)
    		Integer      = lookup("Integer").Underlying().(*Interface)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    				Questions: []dnsmessage.Question{q.Questions[0]},
    				Answers:   answers,
    			}, nil
    		},
    	}
    
    	r := Resolver{PreferGo: true, Dial: fake.DialContext}
    	ins := []string{lookup, absDomainName(lookup), strings.ToLower(lookup), strings.ToUpper(lookup)}
    	for _, in := range ins {
    		_, res, err := r.goLookupIPCNAMEOrder(context.Background(), "ip", in, mode, nil)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def visit_FunctionDef(self, node):
        op_def, derived_attrs = self._op_defs.lookup(node.name, node, True)
        if op_def is None:
          # Nested function. Insert it to symbol table for looking up later.
          self.symbol_table.insert_symbol(node.name, node, None)
          return
        op_name = op_def.name
        if self.symbol_table.lookup(op_name):
          raise LookupError('Composition has not been registered for op: ' +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        int num_branches() { return getBranches().size(); }
    
        // Gets function corresponding branch # `index`.
        // Prefer passing in SymbolTableCollection to reduce lookup costs by
        // enabling reusing cached symbol table lookup.
        func::FuncOp ResolveBranchFunction(::mlir::SymbolTableCollection* table, int index) {
          auto flat_sym_ref = getBranches()[index].cast<FlatSymbolRefAttr>();
          if (table)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    		sh.Flags = uint64(elf.SHF_ALLOC)
    		sh.Addralign = 1
    		shsym(sh, ldr, ldr.Lookup(".dynstr", 0))
    
    		if elfverneed != 0 {
    			sh := elfshname(".gnu.version")
    			sh.Type = uint32(elf.SHT_GNU_VERSYM)
    			sh.Flags = uint64(elf.SHF_ALLOC)
    			sh.Addralign = 2
    			sh.Link = uint32(elfshname(".dynsym").shnum)
    			sh.Entsize = 2
    			shsym(sh, ldr, ldr.Lookup(".gnu.version", 0))
    
    			sh = elfshname(".gnu.version_r")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            maven = container.lookup(Maven.class);
    
            executionRequestPopulator = container.lookup(MavenExecutionRequestPopulator.class);
    
            modelProcessor = createModelProcessor(container);
    
            configurationProcessors = container.lookupMap(ConfigurationProcessor.class);
    
            toolchainsBuilder = container.lookup(ToolchainsBuilder.class);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    			// runtime.types size must be removed, as it's a real symbol.
    			tsize := ldr.SymSize(ldr.Lookup("runtime.types", 0))
    			outerSymSize["typerel.*"] = size - tsize
    			return
    		}
    		fallthrough
    	case sym.STYPE:
    		if !ctxt.DynlinkingGo() {
    			// runtime.types size must be removed, as it's a real symbol.
    			tsize := ldr.SymSize(ldr.Lookup("runtime.types", 0))
    			outerSymSize["type:*"] = size - tsize
    		}
    	case sym.SGOSTRING:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top