Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for nextId (0.44 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    func (tr *TypeRequirement) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sTypeRequirement:\n%s", indent, "", field,
    		tr.Type.goString(indent+2, ""))
    }
    
    // NestedRequirement is a nested requirement in a requires expression.
    type NestedRequirement struct {
    	Constraint AST
    }
    
    func (nr *NestedRequirement) print(ps *printState) {
    	ps.writeString(" requires ")
    	ps.print(nr.Constraint)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

    may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                             .dyn_cast_or_null<mlir::RankedTensorType>();
      if (input_type && weight_type && input_type.hasStaticShape() &&
          weight_type.hasStaticShape()) {
        // Compute op count from the seven nested loops of
        // tflite::reference_ops::TransposeConv():
        count = 2 * input_type.getNumElements() * weight_type.getDimSize(0) *
                weight_type.getDimSize(1) * weight_type.getDimSize(2);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

    may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

    may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

    may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__policy__v1_openapi.json

    may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		},
    	)
    	scheme.AddFieldLabelConversionFunc(newGroupVersion.WithKind("Simple"),
    		func(label, value string) (string, string, error) {
    			return label, value, nil
    		},
    	)
    }
    
    // defaultAPIServer exposes nested objects for testability.
    type defaultAPIServer struct {
    	http.Handler
    	container *restful.Container
    }
    
    func handleWithWarnings(storage map[string]rest.Storage) http.Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    UTF-8 sequence, the second value will be <code>0xFFFD</code>,
    the Unicode replacement character, and the next iteration will advance
    a single byte in the string.
    </li>
    
    <li>
    The iteration order over maps is not specified
    and is not guaranteed to be the same from one iteration to the next.
    If a map entry that has not yet been reached is removed during iteration,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top