Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for nextId (0.22 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            addToContainer(a)
            addToContainer(c)
    
            expect:
            def seen = []
            def iterator = container.iterator()
            seen << iterator.next()
            seen << iterator.next()
            seen << iterator.next()
            !iterator.hasNext()
            seen == iterationOrder(b, a, c)
        }
    
        def "provider for element is queried when elements iterated and insertion order is retained"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	storage.Interface
    
    	UpdatePrefixTransformer(PrefixTransformerModifier) func()
    }
    
    func RunTestListResourceVersionMatch(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer) {
    	nextPod := func(index uint32) (string, *example.Pod) {
    		obj := &example.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: fmt.Sprintf("pod-%d", index),
    				Labels: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMap.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      // This class is never actually serialized directly, but we have to make the
      // warning go away (and suppressing would suppress for all nested classes too)
      private static final long serialVersionUID = 0;
    
      /**
       * Not supported. Use {@link #toImmutableSortedMap}, which offers better type-safety, instead.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_function_test.cc

        v.push_back(IOSpec(name, DT_INVALID));
      }
      return v;
    }
    
    // Specification for an expected edge.
    // src is either:
    // - input name (as it appears in FunctionDef)
    // - name of output tensor (in nested "add:z:0" format)
    // dst is either:
    // - output name (as it appears in FunctionDef)
    // - <name_of_node>:<index_of_this_input_into_node> (this looks the same as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

                node)
        return cst_name, cst_ty
    
      def visit_FunctionDef(self, node):
        op_def, derived_attrs = self._op_defs.lookup(node.name, node, True)
        if op_def is None:
          # Nested function. Insert it to symbol table for looking up later.
          self.symbol_table.insert_symbol(node.name, node, None)
          return
        op_name = op_def.name
        if self.symbol_table.lookup(op_name):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    // It returns library full path if found, or "none" if not found.
    func (ctxt *Link) findLibPathCmd(cmd, libname string) string {
    	extld := ctxt.extld()
    	name, args := extld[0], extld[1:]
    	args = append(args, hostlinkArchArgs(ctxt.Arch)...)
    	args = append(args, cmd)
    	if ctxt.Debugvlog != 0 {
    		ctxt.Logf("%s %v\n", extld, args)
    	}
    	out, err := exec.Command(name, args...).Output()
    	if err != nil {
    		if ctxt.Debugvlog != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			continue
    		}
    		q, err = ParseQuantity(item.alternate)
    		if err != nil {
    			t.Errorf("%#v: unexpected error: %v", item.expect, err)
    			continue
    		}
    		if len(q.s) != 0 {
    			t.Errorf("%#v: unexpected nested string: %v", item.expect, q.s)
    		}
    		if q.String() != item.expect {
    			t.Errorf("%#v: unexpected alternate canonical: %v", item.expect, q.String())
    		}
    		if len(q.s) == 0 || q.s != item.expect {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    		{`package main
    
    		var counter int
    		func next() int { counter++; return counter }
    
    		var _ = makeOrder()
    		func makeOrder() []int { return []int{f, b, d, e, c, a} }
    
    		var a       = next()
    		var b, c    = next(), next()
    		var d, e, f = next(), next(), next()
    		`, []string{
    			"a = next()", "b = next()", "c = next()", "d = next()", "e = next()", "f = next()", "_ = makeOrder()",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      SymbolTable symbol_table(module_for_func.get());
    
      symbol_table.insert(func);
      *serialized_func_module =
          tensorflow::SerializeMlirModule(module_for_func.get());
    }
    
    // Returns whether `op` or ops nested in `op` are outside compiled.
    bool HasOutsideCompilationNested(Operation* op) {
      return op
          ->walk([&](Operation* walked_op) {
            if (op == walked_op) return WalkResult::advance();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "boolean"
            },
            "x-kubernetes-validations": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top