Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 408 for Indices (0.19 sec)

  1. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // 0-indexed names, or to orchestrate progressive movement of replicas from
      // one StatefulSet to another.
      // If set, replica indices will be in the range:
      //   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
      // If unset, defaults to 0. Replica indices will be in the range:
      //   [0, .spec.replicas).
      // +optional
      optional int32 start = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/firAnnotationUtils.kt

            // this loop by index is required to avoid possible ConcurrentModificationException
            val annotations = annotationContainer.resolvedCompilerRequiredAnnotations(firSymbol)
            for (index in annotations.indices) {
                val annotation = annotations[index]
                if (annotation.toAnnotationClassIdSafe(useSiteSession) == classId) {
                    return true
                }
            }
    
            false
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/tests/object_test.cc

      Callable add(TFLIB_CALLABLE_ADAPTOR(AddIntegersTyped));
      auto res = add.Call<Integer>(Integer(3), Integer(1));
      EXPECT_EQ(res->get(), 4);
    }
    
    TEST(TypeUneraseCallTest, TestAppend) {
      // Append some indices to a list.
      Callable append(TFLIB_CALLABLE_ADAPTOR(AppendIntegerToList));
      List l;
      TF_ASSERT_OK(append.Call<None>(l, Integer(3)).status());
      TF_ASSERT_OK(append.Call<None>(l, Integer(6)).status());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/internal/src/xpos.go

    	}
    	return Pos{base, p.lico}
    }
    
    // FileTable returns a slice of all files used to build this package.
    func (t *PosTable) FileTable() []string {
    	// Create a LUT of the global package level file indices. This table is what
    	// is written in the debug_lines header, the file[N] will be referenced as
    	// N+1 in the debug_lines table.
    	fileLUT := make([]string, len(t.nameMap))
    	for str, i := range t.nameMap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    //
    // Example:
    //
    // We want to calculate the sum (h) for a 64 byte message (m):
    //
    //   h = m[0:16]r⁴ + m[16:32]r³ + m[32:48]r² + m[48:64]r
    //
    // To do this we split the calculation into the even indices
    // and odd indices of the message. These form our SIMD 'lanes':
    //
    //   h = m[ 0:16]r⁴ + m[32:48]r² +   <- lane 0
    //       m[16:32]r³ + m[48:64]r      <- lane 1
    //
    // To calculate this iteratively we refactor so that both lanes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

        val scriptFiles: List<File>
    )
    
    
    internal
    fun <T : Any> commonPrefixOf(lists: List<List<T>>): List<T> =
        lists.minByOrNull { it.size }?.let { maxCommonPrefix ->
            maxCommonPrefix.indices.asSequence().takeWhile { index ->
                lists.all { list -> list[index] == maxCommonPrefix[index] }
            }.lastOrNull()?.let { maxCommonIndex ->
                maxCommonPrefix.take(maxCommonIndex + 1)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. src/go/types/infer.go

    		smap := makeSubstMap(tparams, targs)
    		params = check.subst(nopos, params, smap, nil, check.context()).(*Tuple)
    	}
    
    	// Unify parameter and argument types for generic parameters with typed arguments
    	// and collect the indices of generic parameters with untyped arguments.
    	// Terminology: generic parameter = function parameter with a type-parameterized type
    	u := newUnifier(tparams, targs, check.allowVersion(posn, go1_21))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/decompose.go

    // removes all values with OpInvalid, and re-sorts the list of Names.
    func deleteNamedVals(f *Func, toDelete []namedVal) {
    	// Arrange to delete from larger indices to smaller, to ensure swap-with-end deletion does not invalidate pending indices.
    	sort.Slice(toDelete, func(i, j int) bool {
    		if toDelete[i].locIndex != toDelete[j].locIndex {
    			return toDelete[i].locIndex > toDelete[j].locIndex
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    }
    
    func (StatefulSetOrdinals) SwaggerDoc() map[string]string {
    	return map_StatefulSetOrdinals
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReaderTest.java

        public static void afterClass() throws Exception {
            runner.close();
            runner.clean();
        }
    
        @Before
        public void before() throws Exception {
            try {
                runner.admin().indices().prepareDelete("_all").execute().actionGet();
            } catch (IndexNotFoundException ignore) {
    
            }
            runner.refresh();
            suggester = Suggester.builder().build(runner.client(), "SuggesterTest");
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top