Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for Indices (0.11 sec)

  1. src/internal/pkgbits/reloc.go

    // A relocEnt (relocation entry) is an entry in an element's local
    // reference table.
    //
    // TODO(mdempsky): Rename this too.
    type RelocEnt struct {
    	Kind RelocKind
    	Idx  Index
    }
    
    // Reserved indices within the meta relocation section.
    const (
    	PublicRootIdx  Index = 0
    	PrivateRootIdx Index = 1
    )
    
    const (
    	RelocString RelocKind = iota
    	RelocMeta
    	RelocPosBase
    	RelocPkg
    	RelocName
    	RelocType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 22:22:48 UTC 2022
    - 835 bytes
    - Viewed (0)
  2. 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)
  3. test/fixedbugs/issue4813.go

    // errorcheck
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4813: use of constant floats as indices.
    
    package main
    
    var A [3]int
    var S []int
    var T string
    
    const (
    	i  = 1
    	f  = 2.0
    	f2 = 2.1
    	c  = complex(2, 0)
    	c2 = complex(2, 1)
    )
    
    var (
    	vf = f
    	vc = c
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 13 01:18:12 UTC 2013
    - 1.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/stateful_ops_utils.h

    #include <vector>
    
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    
    namespace mlir {
    namespace TFL {
    
    // Check if the given op has stateful operands and return their stateful
    // operand indices.
    bool IsStatefulOp(Operation* op, std::vector<int>* stateful_operand_indices);
    
    }  // namespace TFL
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/internal/goobj/builtin.go

    // license that can be found in the LICENSE file.
    
    package goobj
    
    import "internal/buildcfg"
    
    // Builtin (compiler-generated) function references appear
    // frequently. We assign special indices for them, so they
    // don't need to be referenced by name.
    
    // NBuiltin returns the number of listed builtin
    // symbols.
    func NBuiltin() int {
    	return len(builtins)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 22 13:50:24 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/printers/jsonpath.go

    // arguments.  Thus "index x 1 2 3" is, in Go syntax, x[1][2][3]. Each
    // indexed item must be a map, slice, or array.
    func exists(item interface{}, indices ...interface{}) bool {
    	v := reflect.ValueOf(item)
    	for _, i := range indices {
    		index := reflect.ValueOf(i)
    		var isNil bool
    		if v, isNil = indirect(v); isNil {
    			return false
    		}
    		switch v.Kind() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/grad_helper.h

    namespace tensorflow {
    
    // Helper function for reduction ops.
    //
    // input_shape: 1-D Tensor, the shape of the Tensor being reduced.
    // axes: 1-D Tensor, the reduction axes.
    //   Note that the reduction indices are in the range
    //   -rank(input_shape), rank(input_shape)
    // returns a 1-D Tensor, the output shape as if keep_dims were set to True.
    Output ReducedShapeHelper(const Scope& scope, const Output& input_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    	Sources []StackSource // Mapping from source index to info
    }
    
    // Stack holds a single stack instance.
    type Stack struct {
    	Value   int64 // Total value for all samples of this stack.
    	Sources []int // Indices in StackSet.Sources (callers before callees).
    }
    
    // StackSource holds function/location info for a stack entry.
    type StackSource struct {
    	FullName   string
    	FileName   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/force_xla_constants_on_host_pass.cc

          // Force all constants to be on the host memory.
          TF_RETURN_IF_ERROR(GetBodyAndConstantsAndResources(
              flr, function, &fbody, &constant_arg_indices, &resource_arg_indices));
          VLOG(3) << "Found constant arg indices: "
                  << absl::StrJoin(constant_arg_indices, ", ");
    
          node->AddAttr("_input_hostmem", constant_arg_indices);
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/net/dnsconfig.go

    	trustAD       bool          // add AD flag to queries
    	noReload      bool          // do not check for config file updates
    }
    
    // serverOffset returns an offset that can be used to determine
    // indices of servers in c.servers when making queries.
    // When the rotate option is enabled, this offset increases.
    // Otherwise it is always 0.
    func (c *dnsConfig) serverOffset() uint32 {
    	if c.rotate {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top