- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 380 for checkIsE (0.04 sec)
-
guava/src/com/google/common/collect/EnumMultiset.java
// isActuallyE checks for null, but we check explicitly to help nullness checkers. if (element == null || !isActuallyE(element)) { return 0; } Enum<?> e = (Enum<?>) element; return counts[e.ordinal()]; } // Modification Operations @CanIgnoreReturnValue @Override public int add(E element, int occurrences) { checkIsE(element);
Registered: 2025-05-30 12:43 - Last Modified: 2025-02-19 21:24 - 9.3K bytes - Viewed (0) -
cmd/object-api-input-checks.go
import ( "context" "encoding/base64" "runtime" "strings" "github.com/minio/minio-go/v7/pkg/s3utils" ) // Checks on CopyObject arguments, bucket and object. func checkCopyObjArgs(ctx context.Context, bucket, object string) error { return checkBucketAndObjectNames(ctx, bucket, object) } // Checks on GetObject arguments, bucket and object. func checkGetObjArgs(ctx context.Context, bucket, object string) error {
Registered: 2025-05-25 19:28 - Last Modified: 2024-04-04 12:04 - 5.7K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml
files=".*[/\\]plugins[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\]tasks[/\\][^/\\]+"/> <suppress checks="JavadocPackage" files=".*[/\\]process-services[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]process[/\\][^/\\]+"/> <suppress checks="JavadocPackage" files=".*[/\\]plugins[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]jvm[/\\][^/\\]+"/>
Registered: 2025-05-28 11:36 - Last Modified: 2025-02-20 19:05 - 11.6K bytes - Viewed (0) -
.github/workflows/build.yml
native-image-job-reports: true - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 - name: Run Checks run: ./gradlew check -PandroidBuild=true -PgraalBuild=true -x test -x test testopenjdk11: permissions: checks: write # for mikepenz/action-junit-report runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4
Registered: 2025-05-30 11:42 - Last Modified: 2025-05-29 17:52 - 19.3K bytes - Viewed (0) -
schema/constraint.go
func (schema *Schema) ParseCheckConstraints() map[string]CheckConstraint { checks := map[string]CheckConstraint{} for _, field := range schema.FieldsByDBName { if chk := field.TagSettings["CHECK"]; chk != "" { names := strings.Split(chk, ",") if len(names) > 1 && regEnLetterAndMidline.MatchString(names[0]) { checks[names[0]] = CheckConstraint{Name: names[0], Constraint: strings.Join(names[1:], ","), Field: field}
Registered: 2025-05-25 09:35 - Last Modified: 2024-03-18 07:33 - 1.9K bytes - Viewed (0) -
schema/constraint_test.go
}, "chk_user_checks_name3": { Name: "chk_user_checks_name3", Constraint: "name <> 'jinzhu'", }, } checks := user.ParseCheckConstraints() for k, result := range results { v, ok := checks[k] if !ok { t.Errorf("Failed to found check %v from parsed checks %+v", k, checks) } for _, name := range []string{"Name", "Constraint"} {
Registered: 2025-05-25 09:35 - Last Modified: 2024-02-04 07:49 - 2.2K bytes - Viewed (0) -
cmd/object-api-deleteobject_test.go
pathToDelete string objectsAfterDelete []string }{ // Test 1: removes an object and checks it is the only object // that has been deleted. { "bucket1", []objectUpload{{"object0", "content"}, {"object1", "content"}}, "object0", []string{"object1"}, }, // Test 2: remove an object inside a directory and checks it is deleted // with its parent since this former becomes empty { "bucket2",
Registered: 2025-05-25 19:28 - Last Modified: 2024-08-29 01:40 - 4.1K bytes - Viewed (0) -
manifests/helm-profiles/demo.yaml
## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces. # Note that AWS ELB will by default perform health checks on the first port # on this list. Setting this to the health check port will ensure that health # checks always work. https://github.com/istio/istio/issues/12503 - port: 15021 targetPort: 15021 name: status-port - port: 80 targetPort: 8080
Registered: 2025-05-28 22:53 - Last Modified: 2024-12-10 01:56 - 2.2K bytes - Viewed (0) -
manifests/charts/default/files/profile-demo.yaml
## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces. # Note that AWS ELB will by default perform health checks on the first port # on this list. Setting this to the health check port will ensure that health # checks always work. https://github.com/istio/istio/issues/12503 - port: 15021 targetPort: 15021 name: status-port - port: 80 targetPort: 8080
Registered: 2025-05-28 22:53 - Last Modified: 2024-12-10 01:56 - 2.4K bytes - Viewed (0) -
.github/workflows/scorecard.yml
on: # For Branch-Protection check. Only the default branch is supported. See # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection branch_protection_rule: # To guarantee Maintained check is occasionally updated. See # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained schedule: - cron: '45 9 * * 0' push: branches: [ "master" ] # Declare default permissions as read only.
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-01 19:27 - 2.9K bytes - Viewed (0)