Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 419 for representing (0.24 sec)

  1. api/openapi-spec/v3/apis__rbac.authorization.k8s.io_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

     *     <li>Safe execution of multiple tasks in parallel</li>
     * </ul>
     *
     * <p>Work should be submitted with a {@link WorkAction} class representing the implementation of the unit of work
     * and an action to configure the parameters of the unit of work (via {@link WorkParameters}).
     *
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

          Convert a model represented in `input_contents`. `model_flags_proto`
          describes model parameters. `flags_proto` describes conversion
          parameters (see relevant .protos for more information). Returns a string
          representing the contents of the converted model. When extended_return
          flag is set to true returns a dictionary that contains string representation
          of the converted model and some statistics like arithmetic ops count.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/math/big/floatconv.go

    func (z *Float) SetString(s string) (*Float, bool) {
    	if f, _, err := z.Parse(s, 0); err == nil {
    		return f, true
    	}
    	return nil, false
    }
    
    // scan is like Parse but reads the longest possible prefix representing a valid
    // floating point number from an io.ByteScanner rather than a string. It serves
    // as the implementation of Parse. It does not recognize ±Inf and does not expect
    // EOF at the end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.js

      }
    
      function switchSampleLanguage(languageId) {
        var multiLanguageSampleElements = [].slice.call(
          document.querySelectorAll(".multi-language-sample")
        );
    
        // Array of Arrays, each top-level array representing a single collection of samples
        var multiLanguageSets = [];
        for (var i = 0; i < multiLanguageSampleElements.length; i++) {
          var currentCollection = [multiLanguageSampleElements[i]];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/internal/reflectlite/export_test.go

    func StructFieldType(t *structType, i int) Type {
    	if i < 0 || i >= len(t.Fields) {
    		panic("reflect: Field index out of bounds")
    	}
    	p := &t.Fields[i]
    	return toType(p.Typ)
    }
    
    // Zero returns a Value representing the zero value for the specified type.
    // The result is different from the zero value of the Value struct,
    // which represents no value at all.
    // For example, Zero(TypeOf(42)) returns a Value with Kind Int and value 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

          "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/object.go

    }
    
    // NewParam returns a new variable representing a function parameter.
    func NewParam(pos syntax.Pos, pkg *Package, name string, typ Type) *Var {
    	return &Var{object: object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, used: true} // parameters are always 'used'
    }
    
    // NewField returns a new variable representing a struct field.
    // For embedded fields, the name is the unqualified type name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__scheduling.k8s.io_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__storage.k8s.io_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top