Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,855 for generateRS (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.pb.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/apimachinery/pkg/runtime/schema/generated.proto
    
    package schema
    
    import (
    	fmt "fmt"
    
    	math "math"
    
    	proto "github.com/gogo/protobuf/proto"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. hack/_update-generated-protobuf-dockerized.sh

    # core Google protobuf types
    PATH="${KUBE_ROOT}/_output/bin:${PATH}" \
      go-to-protobuf \
      -v "${KUBE_VERBOSE}" \
      --go-header-file "${KUBE_ROOT}/hack/boilerplate/boilerplate.generatego.txt" \
      --output-dir="${KUBE_ROOT}/staging/src" \
      --proto-import="${KUBE_ROOT}/staging/src" \
      --proto-import="${KUBE_ROOT}/vendor" `# required for gogo.proto` \
      --proto-import="${KUBE_ROOT}/third_party/protobuf" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/generated.pb.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/apimachinery/pkg/api/resource/generated.proto
    
    package resource
    
    import (
    	fmt "fmt"
    
    	math "math"
    
    	proto "github.com/gogo/protobuf/proto"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/generated.proto

    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.apimachinery.pkg.api.resource;
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apimachinery/pkg/api/resource";
    
    // Quantity is a fixed-point representation of a number.
    // It provides convenient marshaling/unmarshaling in JSON and YAML,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/intstr/generated.pb.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/apimachinery/pkg/util/intstr/generated.proto
    
    package intstr
    
    import (
    	fmt "fmt"
    
    	io "io"
    	math "math"
    	math_bits "math/bits"
    
    	proto "github.com/gogo/protobuf/proto"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. docs/em/docs/advanced/generate-clients.md

    frontend-app@1.0.0 generate-client /home/user/code/frontend-app
    > openapi-ts --input http://localhost:8000/openapi.json --output ./src/client --client axios
    ```
    
    </div>
    
    👈 📋 🔜 🏗 📟 `./src/client` &amp; 🔜 ⚙️ `axios` (🕸 🇺🇸🔍 🗃) 🔘.
    
    ### 🔄 👅 👩‍💻 📟
    
    🔜 👆 💪 🗄 &amp; ⚙️ 👩‍💻 📟, ⚫️ 💪 👀 💖 👉, 👀 👈 👆 🤚 ✍ 👩‍🔬:
    
    <img src="/img/tutorial/generate-clients/image02.png">
    
    👆 🔜 🤚 ✍ 🚀 📨:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. docs/zh/docs/advanced/generate-clients.md

    frontend-app@1.0.0 generate-client /home/user/code/frontend-app
    > openapi-ts --input http://localhost:8000/openapi.json --output ./src/client --client axios
    ```
    
    </div>
    
    此命令将在 `./src/client` 中生成代码,并将在其内部使用 `axios`(前端HTTP库)。
    
    ### 尝试客户端代码
    
    现在您可以导入并使用客户端代码,它可能看起来像这样,请注意,您可以为这些方法使用自动补全:
    
    <img src="/img/tutorial/generate-clients/image02.png">
    
    您还将自动补全要发送的数据:
    
    <img src="/img/tutorial/generate-clients/image03.png">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGeneratorTest.groovy

        }
    
        Class<? extends SomeType> generate(Class<? extends SomeType> implType, Class<? extends SomeType> publicType) {
            def generated = classes[publicType]
            if (generated == null) {
                generated = generator.generate(implType, publicType)
                classes[publicType] = generated
            }
            return generated
        }
    
        interface SomeType {
            Integer getValue()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. hack/verify-generated-docs.sh

    # files) are generated correctly(just verifies the generation process).
    # Usage: `hack/verify-generated-docs.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. releasenotes/notes/generate-operator-manifest.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 27139
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 08 19:00:55 UTC 2020
    - 252 bytes
    - Viewed (0)
Back to top