Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 284 for Indices (0.1 sec)

  1. tensorflow/c/c_api_function.cc

          input_nodes->insert({node, {idx}});
        } else {
          auto& indices = iter->second;
          if (std::find(indices.begin(), indices.end(), idx) != indices.end()) {
            return InvalidArgument("TF_Output ", node->name(), ":", idx,
                                   " appears more than once in the input list");
          }
          indices.push_back(idx);
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java

    import org.codelibs.opensearch.runner.OpenSearchRunner;
    import org.junit.AfterClass;
    import org.junit.Before;
    import org.junit.BeforeClass;
    import org.junit.Test;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    import org.opensearch.index.IndexNotFoundException;
    
    public class AnalyzerSettingsTest {
        String id = "analyzerSettingsTest";
    
        static SuggestSettings settings;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/time/sleep_test.go

    			dur := Since(now)
    			if dur > 750*Millisecond {
    				t.Errorf("timer %d took %v to complete", i, dur)
    			}
    
    		// Timer is done. Swap with tail and remove.
    		case 10:
    			indices[ii] = indices[len(indices)-1]
    			indices = indices[:len(indices)-1]
    		}
    	}
    }
    
    // Benchmark timer latency when the thread that creates the timer is busy with
    // other work and the timers must be serviced by other threads.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.cc

        CustomOpInfo new_node_info;
        switch (update_option) {
          case CustomOpUpdateOptions::kInputIndices: {
            const std::vector<std::string> indices =
                absl::StrSplit(node_specification, '-');
            for (const std::string& cur_index : indices) {
              custom_op_map[node_name].quantizable_input_indices.push_back(
                  std::stoi(cur_index));
            }
            break;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

        Stateful operands correspond to TF's variables semantics. An op that has 1
        or more stateful operands is a stateful op.
      }];
    
      let methods = [
        InterfaceMethod<
          [{Returns the indices of stateful operands.}],
          "std::vector<int>", "GetStatefulOperands", (ins)
        >,
      ];
    }
    
    //===----------------------------------------------------------------------===//
    // TFL op interface for sparse operands.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java

    import org.opensearch.action.ActionRequest;
    import org.opensearch.action.ActionType;
    import org.opensearch.action.admin.cluster.health.ClusterHealthResponse;
    import org.opensearch.action.admin.indices.segments.IndicesSegmentResponse;
    import org.opensearch.action.admin.indices.segments.PitSegmentsRequest;
    import org.opensearch.action.bulk.BulkRequest;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. internal/event/target/elasticsearch.go

    	res, err := c.Indices.ResolveIndex([]string{args.Index})
    	if err != nil {
    		return err
    	}
    	defer res.Body.Close()
    
    	var v map[string]interface{}
    	found := false
    	if err := json.NewDecoder(res.Body).Decode(&v); err != nil {
    		return fmt.Errorf("Error parsing response body: %v", err)
    	}
    
    	indices, ok := v["indices"].([]interface{})
    	if ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/test/resources/before_script.sh

        exit 1
      fi
      sleep 1
    done
    
    pushd /tmp >/dev/null
    git clone https://github.com/codelibs/fess-testdata.git
    popd >/dev/null
    
    cat ${temp_log_file} ./fess-*/logs/*.log
    curl -s "http://localhost:9201/_cat/indices?v"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 863 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzer.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.suggest.analysis;
    
    import java.util.List;
    
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    
    public interface SuggestAnalyzer {
        List<AnalyzeToken> analyze(String text, String field, String lang);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 962 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

    //===----------------------------------------------------------------------===//
    
    def LowerTensorScatterAdd: Pat<
      (TF_TensorScatterAddOp $input, $indices, $updates),
      (TF_TensorScatterUpdateOp $input, $indices,
         (TF_AddOp $updates, (CreateGatherNdOp $updates, $input, $indices)))>;
    
    //===----------------------------------------------------------------------===//
    // AddV2 op patterns.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top