Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for Indexer (0.15 sec)

  1. src/debug/elf/elf.go

     * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     * SUCH DAMAGE.
     */
    
    package elf
    
    import "strconv"
    
    /*
     * Constants
     */
    
    // Indexes into the Header.Ident array.
    const (
    	EI_CLASS      = 4  /* Class of machine. */
    	EI_DATA       = 5  /* Data format. */
    	EI_VERSION    = 6  /* ELF format version. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. pkg/registry/batch/job/strategy_test.go

    				ObjectMeta: validObjectMeta,
    				Status: batch.JobStatus{
    					CompletionTime: &now,
    					Active:         1,
    				},
    			},
    		},
    		"invalid attempt setting CompletedIndexes when non-indexed completion mode is used": {
    			enableJobManagedBy: true,
    			job: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:    ptr.To[int32](5),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                                        rewriter.getI64Type()),
                  permutation));
          reverse_filter_in = filter_transposed;
        }
    
        // Lets hard-code the reverse indexes to be {0, 1} as the expectation is
        // that the kernel is always in HWOI format, with the above code.
        mhlo::ReverseOp filter = rewriter.create<mhlo::ReverseOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    		}
    		kubeInformers.Start(wait.NeverStop)
    		klog.InfoS("Attempting to sync node with API server")
    	} else {
    		// we don't have a client to sync!
    		nodeIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{})
    		nodeLister = corelisters.NewNodeLister(nodeIndexer)
    		nodeHasSynced = func() bool { return true }
    		klog.InfoS("Kubelet is running in standalone mode, will skip API server sync")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/reflect/value.go

    	v.mustBeAssignable()
    	v.mustBe(String)
    	*(*string)(v.ptr) = x
    }
    
    // Slice returns v[i:j].
    // It panics if v's Kind is not [Array], [Slice] or [String], or if v is an unaddressable array,
    // or if the indexes are out of bounds.
    func (v Value) Slice(i, j int) Value {
    	var (
    		cap  int
    		typ  *sliceType
    		base unsafe.Pointer
    	)
    	switch kind := v.kind(); kind {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

    function yaml-map-string-stringarray {
      declare -r name="${1}"
      declare -r encoded="${2}"
      declare -r kv_sep="${3:-:}"
      declare -r item_sep="${4:-,}"
    
      declare -a pairs # indexed array
      declare -A map # associative array
      IFS="${item_sep}" read -ra pairs <<<"${encoded}" # split on item_sep
      for pair in "${pairs[@]}"; do
        declare key
        declare value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

        }
        // Using buildKeepingLast() so as not to fail on duplicate keys
        return builder.buildKeepingLast();
      }
    
      /**
       * Returns a map with the given {@code values}, indexed by keys derived from those values. In
       * other words, each input value produces an entry in the map whose key is the result of applying
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Maps.java

        }
        // Using buildKeepingLast() so as not to fail on duplicate keys
        return builder.buildKeepingLast();
      }
    
      /**
       * Returns a map with the given {@code values}, indexed by keys derived from those values. In
       * other words, each input value produces an entry in the map whose key is the result of applying
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/_aws/fess.json

            },
            "german_stop": {
              "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_cloud/fess.json

            },
            "german_stop": {
              "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
Back to top