- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 475 for affected (0.06 sec)
-
common-protos/k8s.io/api/admissionregistration/v1/generated.proto
// +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1; // Webhooks is a list of webhooks and the affected resources and operations. // +optional // +patchMergeKey=name // +patchStrategy=merge repeated MutatingWebhook Webhooks = 2; }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TopKSelector.java
* fewer than {@code k} have been offered, in the order specified by the factory used to create * this {@code TopKSelector}. * * <p>The returned list is an unmodifiable copy and will not be affected by further changes to * this {@code TopKSelector}. This method returns in O(k log k) time. */ public List<T> topK() { @SuppressWarnings("nullness") // safe because we pass sort() a range that contains real Ts
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 11.1K bytes - Viewed (0) -
istioctl/pkg/tag/generate.go
AutoInjectNamespaces bool // CustomLabels are labels to add to the generated webhook. CustomLabels map[string]string // UserManaged indicates whether the revision tag is user managed. // If true, the revision tag will not be affected by the installer. UserManaged bool } // Generate generates the manifests for a revision tag pointed the given revision.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.3K bytes - Viewed (0) -
istioctl/pkg/precheck/precheck.go
LabelSelector: "app=istiod", }) if err != nil { return err } for _, deployment := range deployments.Items { scopingImpacted := false // Obtain configmap to verify if affected features are used configMapName := "istio" if rev := deployment.Labels[label.IoIstioRev.Name]; rev != "default" { configMapName += fmt.Sprintf("-%s", rev) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 02:31:32 UTC 2024 - 15.3K bytes - Viewed (0) -
tests/update_test.go
if res := DB.Model(user).Updates(values); res.Error != nil { t.Errorf("errors happened when update: %v", res.Error) } else if res.RowsAffected != 1 { t.Errorf("rows affected should be 1, but got : %v", res.RowsAffected) } else if user.Age != 5 { t.Errorf("Age should equals to 5, but got %v", user.Age) } else if user.Active != true { t.Errorf("Active should be true, but got %v", user.Active)
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Dec 04 03:50:58 UTC 2023 - 30.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/RateLimiter.java
* } * }</pre> * * <p>It is important to note that the number of permits requested <i>never</i> affects the * throttling of the request itself (an invocation to {@code acquire(1)} and an invocation to {@code * acquire(1000)} will result in exactly the same throttling, if any), but it affects the throttling * of the <i>next</i> request. I.e., if an expensive task arrives at an idle RateLimiter, it will be
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 21.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/RateLimiter.java
* } * }</pre> * * <p>It is important to note that the number of permits requested <i>never</i> affects the * throttling of the request itself (an invocation to {@code acquire(1)} and an invocation to {@code * acquire(1000)} will result in exactly the same throttling, if any), but it affects the throttling * of the <i>next</i> request. I.e., if an expensive task arrives at an idle RateLimiter, it will be
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 21.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64enc_extra.s
VMAXPD (AX), Z2, K1, Z1 // 62f1ed495f08 VCMPSD.SAE $0, X0, X2, K0 // 62f1ef18c2c000 VCMPSD.SAE $0, X0, X2, K1, K0 // 62f1ef19c2c000 // EVEX: broadcast-affected compressed displacement (Disp8). VADDPD.BCST 1016(DX), X0, X29 // 6261fd18586a7f VADDPD.BCST 1016(DX), X29, X1 // 62f19510584a7f VADDPD.BCST 1016(DX), X28, X29 // 62619d10586a7f
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Apr 11 18:32:50 UTC 2023 - 57.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.27.md
**Affected Versions**: - kubelet >= v1.8.0 **Fixed Versions**: - kubelet v1.28.4 - kubelet v1.27.8 - kubelet v1.26.11 - kubelet v1.25.16
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jul 17 07:48:22 UTC 2024 - 466.3K bytes - Viewed (1) -
migrator/migrator.go
unique, ok := columnType.Unique() if !ok || field.PrimaryKey { return nil // skip primary key } // By default, ColumnType's Unique is not affected by UniqueIndex, so we don't care about UniqueIndex. return m.RunWithValue(value, func(stmt *gorm.Statement) error { // We're currently only receiving boolean values on `Unique` tag, // so the UniqueConstraint name is fixed
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Apr 26 07:15:49 UTC 2024 - 29K bytes - Viewed (0)