Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for 20something (0.3 sec)

  1. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

    package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

    package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    			db.mu.Lock()
    			deleted := db.connRequests.Delete(delHandle)
    			db.mu.Unlock()
    
    			db.waitDuration.Add(int64(time.Since(waitStart)))
    
    			// If we failed to delete it, that means something else
    			// grabbed it and is about to send on it.
    			if !deleted {
    				// TODO(bradfitz): rather than this best effort select, we
    				// should probably start a goroutine to read from req. This best
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              rhs_shape_type.getElementType());
      // Look for resource or variant element type and ensure we refine the subtype.
      // We only support a single subtype at the moment, we won't handle something
      // like:
      //   tensor<!tf_type.variant<tensor<10xf32>, tensor<8xf32>>
      if (rhs_element_type_with_subtype &&
          rhs_element_type_with_subtype.GetSubtypes().size() == 1) {
        auto lhs_element_type_with_subtype =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	max             int // maximum output length
    
    	// The scopes field is used to avoid unnecessary parentheses
    	// around expressions that use > (or >>). It is incremented if
    	// we output a parenthesis or something else that means that >
    	// or >> won't be treated as ending a template. It starts out
    	// as 1, and is set to 0 when we start writing template
    	// arguments. We add parentheses around expressions using > if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      } else {
        begin_int = std::min(begin_int, rank - 1);
        end_int = std::min(end_int, rank - 1);
      }
    
      SmallVector<int64_t, 2> sub_shape;
      // Only handle cases that have something to slice to avoid infinite for-loop.
      if ((end_int > begin_int && strides_int > 0) ||
          (end_int < begin_int && strides_int < 0)) {
        // Extract sub-shape only if all of those dimensions are static.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		r := relocs.At(ri)
    		rt := r.Type()
    		if !rt.IsDirectCallOrJump() && !isPLTCall(rt) {
    			continue
    		}
    		rs := r.Sym()
    		if !ldr.AttrReachable(rs) || ldr.SymType(rs) == sym.Sxxx {
    			continue // something is wrong. skip it here and we'll emit a better error later
    		}
    
    		if ldr.SymValue(rs) == 0 && ldr.SymType(rs) != sym.SDYNIMPORT && ldr.SymType(rs) != sym.SUNDEFEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

    package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      log-wrap 'OverrideKubectl' override-kubectl
      if docker-installed; then
        # We still need to configure docker so it wouldn't reserver the 172.17.0/16 subnet
        # And if somebody will start docker to build or pull something, logging will also be set up
        log-wrap 'AssembleDockerFlags' assemble-docker-flags
        # stop docker if it is present as we want to use just containerd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top