Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 125 for setPos (0.13 sec)

  1. src/cmd/link/internal/loader/loader.go

    func (l *Loader) SymGot(s Sym) int32 {
    	if v, ok := l.got[s]; ok {
    		return v
    	}
    	return -1
    }
    
    // SetGot sets the GOT offset of symbol i.
    func (l *Loader) SetGot(i Sym, v int32) {
    	if i >= Sym(len(l.objSyms)) || i == 0 {
    		panic("bad symbol for SetGot")
    	}
    	if v == -1 {
    		delete(l.got, i)
    	} else {
    		l.got[i] = v
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "SETO", argLength: 1, reg: readflags, asm: "SETOS"},  // extract if overflow flag is set from arg0
    		// Need different opcodes for floating point conditions because
    		// any comparison involving a NaN is always FALSE and thus
    		// the patterns for inverting conditions cannot be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        bool reuse_existing_functions, FunctionLibraryDefinition* library) {
      // name_in is copied here because name may be modified below if
      // rewrite_subgraph_fn is true.
      string name = name_in;
      call_node_def_.set_op(name);
      call_node_def_.set_name(name);
      call_node_def_.set_device(device_);
    
      if (rewrite_subgraph_fn) {
        std::vector<OutputTensor> arg_source_tensors(args_by_src_.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/obj6.go

    	ASETGE:      true,
    	ASETGT:      true,
    	ASETHI:      true,
    	ASETLE:      true,
    	ASETLS:      true,
    	ASETLT:      true,
    	ASETMI:      true,
    	ASETNE:      true,
    	ASETOC:      true,
    	ASETOS:      true,
    	ASETPC:      true,
    	ASETPL:      true,
    	ASETPS:      true,
    	ASGDT:       true,
    	ASIDT:       true,
    	ASLDTL:      true,
    	ASLDTQ:      true,
    	ASLDTW:      true,
    	ASMSWL:      true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            if (usePipeline) {
                return updateByIdWithScript(index, id, field, value);
            }
            try {
                final Result result = client.prepareUpdate().setIndex(index).setId(id).setDoc(field, value).execute()
                        .actionGet(ComponentUtil.getFessConfig().getIndexIndexTimeout()).getResult();
                return result == Result.CREATED || result == Result.UPDATED;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      *flib_def.add_function() = std::move(func);
      TF_ASSERT_OK(root.graph()->AddFunctionLibrary(flib_def));
      NodeDef call_node;
      call_node.set_name("fn_call");
      call_node.set_op("Stateful_func");
      Status status;
      Node* call = root.graph()->AddNode(call_node, &status);
      TF_ASSERT_OK(status);
    
      Output shape = Output(call, 0);
      Output reshape_input =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        std::vector<int>* output_permutation, NodeDef* node_def) {
      string old_name = node_def->op();
      string new_name =
          absl::StrCat(xla_cluster_name_, "_", new_function_name_, "_", old_name);
      node_def->set_op(new_name);
      node_def->set_name(new_name);
    
      // Later we will run PruneForReverseReachability(), so make sure all original
      // nodes are reachable from sink node and won't be removed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

        EXPECT_FALSE(TF_TensorIsAligned(a));
      }
      TF_DeleteTensor(a);
    }
    
    TEST(CAPI, MessageBufferConversion) {
      NodeDef node_in, node_out;
      node_in.set_name("Test name");
      node_in.set_op("Test op");
    
      TF_Buffer* buffer = TF_NewBuffer();
      TF_CHECK_OK(MessageToBuffer(node_in, buffer));
      TF_CHECK_OK(BufferToMessage(buffer, &node_out));
      TF_DeleteBuffer(buffer);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	SETPL R11                               // 410f99c3
    	SETOS (BX)                              // 0f9003
    	SETOS (R11)                             // 410f9003
    	SETOS DL                                // 0f90c2
    	SETOS R11                               // 410f90c3
    	SETPS (BX)                              // 0f9a03
    	SETPS (R11)                             // 410f9a03
    	SETPS DL                                // 0f9ac2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "SETO", argLength: 1, reg: readflags, asm: "SETOS"},  // extract if overflow flag is set from arg0
    		// Variants that store result to memory
    		{name: "SETEQstore", argLength: 3, reg: gpstoreconst, asm: "SETEQ", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},               // extract == condition from arg1 to arg0+auxint+aux, arg2=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
Back to top