- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 7,158 for kind_ (0.04 sec)
-
common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto
} // ParamKind is a tuple of Group Kind and Version. // +structType=atomic message ParamKind { // APIVersion is the API group version the resources belong to. // In format of "group/version". // Required. optional string apiVersion = 1; // Kind is the API kind the resources belong to. // Required. optional string kind = 2; } // ParamRef references a parameter resource
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 25.7K bytes - Viewed (0) -
istioctl/pkg/validate/validate.go
g := config.GroupVersionKind{ Group: un.GroupVersionKind().Group, Version: un.GroupVersionKind().Version, Kind: un.GroupVersionKind().Kind, } schema, exists := collections.Pilot.FindByGroupVersionAliasesKind(g) if exists { obj, err := convertObjectFromUnstructured(schema, un, "") if err != nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 22:27:47 UTC 2024 - 14.3K bytes - Viewed (0) -
ci/official/envs/no_upload
# distributed under the License is distributed on an "AS IS" BASIS, # 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. # ============================================================================== # Disable ALL uploads of any kind. TFCI_ARTIFACT_FINAL_GCS_ENABLE= TFCI_ARTIFACT_FINAL_GCS_SA_PATH= TFCI_ARTIFACT_FINAL_GCS_URI=
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Jan 19 19:07:48 UTC 2024 - 1012 bytes - Viewed (0) -
common/scripts/kind_provisioner.sh
# cleanup_kind_cluster takes a single parameter NAME # and deletes the KinD cluster with that name function cleanup_kind_cluster() { echo "Test exited with exit code $?." NAME="${1}" kind export logs --name "${NAME}" "${ARTIFACTS}/kind" -v9 || true if [[ -z "${SKIP_CLEANUP:-}" ]]; then echo "Cleaning up kind cluster" kind delete cluster --name "${NAME}" -v9 || true fi }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 21 04:47:23 UTC 2024 - 17.2K bytes - Viewed (0) -
statement.go
stmt.Dest = destValueCanAddr.Interface() destValue = destValueCanAddr.Elem() } switch destValue.Kind() { case reflect.Struct: stmt.AddError(field.Set(stmt.Context, destValue, value)) default: stmt.AddError(ErrInvalidData) } } switch stmt.ReflectValue.Kind() { case reflect.Slice, reflect.Array: if len(fromCallbacks) > 0 {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Jun 24 09:42:59 UTC 2024 - 19.9K bytes - Viewed (0) -
api/go1.21.txt
pkg log/slog, const KindAny Kind #56345 pkg log/slog, const KindBool = 1 #56345 pkg log/slog, const KindBool Kind #56345 pkg log/slog, const KindDuration = 2 #56345 pkg log/slog, const KindDuration Kind #56345 pkg log/slog, const KindFloat64 = 3 #56345 pkg log/slog, const KindFloat64 Kind #56345 pkg log/slog, const KindGroup = 8 #56345 pkg log/slog, const KindGroup Kind #56345 pkg log/slog, const KindInt64 = 4 #56345
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 07 09:39:17 UTC 2023 - 25.6K bytes - Viewed (0) -
common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto
optional string message = 6; } // CarpList is a list of Carps. message CarpList { // Standard list metadata. // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1; // List of carps. // More info: http://kubernetes.io/docs/user-guide/carps repeated Carp items = 2; }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 7.7K bytes - Viewed (0) -
istioctl/pkg/validate/validate_test.go
ports: - containerPort: 9080 kind: List metadata: resourceVersion: "" selfLink: ""` invalidSvcList = ` apiVersion: v1 items: - apiVersion: v1 kind: Service metadata: name: details spec: ports: - name: details port: 9080 - apiVersion: v1 kind: Service metadata: name: hello spec:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 02 16:18:14 UTC 2024 - 21.4K bytes - Viewed (0) -
schema/relationship_test.go
type Profile struct { gorm.Model Name string Kind string ProfileRefer uint } type User struct { gorm.Model Profiles []Profile `gorm:"many2many:user_profiles;foreignKey:Refer,Kind;joinForeignKey:UserRefer,Kind;References:ProfileRefer,Kind;joinReferences:ProfileR,Kind"` Kind string Refer uint } checkStructRelation(t, &User{}, Relation{
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Apr 15 03:20:20 UTC 2024 - 25.5K bytes - Viewed (0) -
istioctl/pkg/xds/google.go
// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // 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. package xds import ( "context" "crypto/tls" "crypto/x509" "errors"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Nov 14 20:23:34 UTC 2022 - 3.4K bytes - Viewed (0)