Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for LookUp (0.16 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      module.walk([&](mlir::TFL::WhileOp while_op) {
        auto cond = symbol_table.lookup<mlir::func::FuncOp>(
            while_op->getAttr("cond").cast<mlir::FlatSymbolRefAttr>().getValue());
        AddCallOpInWhileOpRegion(while_op.getCond(), cond);
        while_op->removeAttr("cond");
        auto body = symbol_table.lookup<mlir::func::FuncOp>(
            while_op->getAttr("body").cast<mlir::FlatSymbolRefAttr>().getValue());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    	runtime.SetBlockProfileRate(1)
    	defer runtime.SetBlockProfileRate(0)
    	for _, test := range tests {
    		test.f(t)
    	}
    
    	t.Run("debug=1", func(t *testing.T) {
    		var w strings.Builder
    		Lookup("block").WriteTo(&w, 1)
    		prof := w.String()
    
    		if !strings.HasPrefix(prof, "--- contention:\ncycles/second=") {
    			t.Fatalf("Bad profile header:\n%v", prof)
    		}
    
    		if strings.HasSuffix(prof, "#\t0x0\n\n") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/time/time.go

    			sec += int64(l.cacheZone.offset)
    		} else {
    			_, offset, _, _, _ := l.lookup(sec)
    			sec += int64(offset)
    		}
    	}
    	return uint64(sec + (unixToInternal + internalToAbsolute))
    }
    
    // locabs is a combination of the Zone and abs methods,
    // extracting both return values from a single zone lookup.
    func (t Time) locabs() (name string, offset int, abs uint64) {
    	l := t.loc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    	splitOffset int64
    }
    
    // lookup looks up a LocalSlot in the slot canonicalizer "sc", returning
    // a canonical index for the slot, and adding it to the table if need
    // be. Return value is the canonical slot index, and a boolean indicating
    // whether the slot was found in the table already (TRUE => found).
    func (sc *slotCanonicalizer) lookup(ls LocalSlot) (SlKeyIdx, bool) {
    	split := noSlot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/EventListenerTest.kt

            .setHeader("Location", "http://www.fakeurl:" + server.port)
            .build(),
        )
        server.enqueue(MockResponse())
        val dns = FakeDns()
        dns["fakeurl"] = client.dns.lookup(server.hostName)
        dns["www.fakeurl"] = client.dns.lookup(server.hostName)
        client =
          client.newBuilder()
            .dns(dns)
            .build()
        val call =
          client.newCall(
            Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  6. cmd/iam.go

    	}
    
    	// Initialize if LDAP is enabled
    	ldapConfig, err := xldap.Lookup(s, globalRootCAs)
    	if err != nil {
    		iamLogIf(ctx, fmt.Errorf("Unable to load LDAP configuration (LDAP configuration will be disabled!): %w", err), logger.WarningKind)
    	}
    
    	stsTLSConfig, err := xtls.Lookup(s[config.IdentityTLSSubSys][config.Default])
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            dyn_cast<func::FuncOp>(symbol_table.lookup(f_attr.getValue()));
        rewriter.setInsertionPointAfter(float_func);
    
        const std::string quantized_function_name = GetQuantizedFunctionName(
            f_attr.getValue(), /*merged_with_dequantize=*/true,
            /*is_hybrid=*/false);
        const auto quantized_func = dyn_cast_or_null<func::FuncOp>(
            symbol_table.lookup(quantized_function_name));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    func newmemberoffsetattr(die *dwarf.DWDie, offs int32) {
    	newattr(die, dwarf.DW_AT_data_member_location, dwarf.DW_CLS_CONSTANT, int64(offs), nil)
    }
    
    func (d *dwctxt) lookupOrDiag(n string) loader.Sym {
    	symIdx := d.ldr.Lookup(n, 0)
    	if symIdx == 0 {
    		Exitf("dwarf: missing type: %s", n)
    	}
    	if len(d.ldr.Data(symIdx)) == 0 {
    		Exitf("dwarf: missing type (no data): %s", n)
    	}
    
    	return symIdx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    	return i
    }
    
    // LookupOrCreateSym looks up the symbol with the specified name/version,
    // returning its Sym index if found. If the lookup fails, a new external
    // Sym will be created, entered into the lookup tables, and returned.
    func (l *Loader) LookupOrCreateSym(name string, ver int) Sym {
    	i := l.Lookup(name, ver)
    	if i != 0 {
    		return i
    	}
    	i = l.newExtSym(name, ver)
    	static := ver >= sym.SymVerStatic || ver < 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Erase original while op and temporary functions. Note, we use the non_tpu
      // function in the output graph.
      symbol_table.lookup(orig_callers.forward.getF())->erase();
      symbol_table.lookup(orig_callers.core_tpu.getF())->erase();
      symbol_table.lookup(orig_callers.backward.getF())->erase();
      orig_while_op.body_function().erase();
      orig_while_op.erase();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top