Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 296 for 1223 (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/format_test.go

    			expectValue: types.OptionalOf(types.NewStringList(types.DefaultTypeAdapter, []string{"a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character (e.g. 'my-name',  or '123-abc', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')"})),
    		},
    		{
    			name:        "dns1123Subdomain",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/securitycontext/accessors_test.go

    			}
    		}
    
    		// SupplementalGroups
    		{
    			modifiedSC := nonNilSC(tc.newSC())
    			m := NewPodSecurityContextMutator(tc.newSC())
    			modifiedSC.SupplementalGroups = []int64{1, 1, 2, 3}
    			m.SetSupplementalGroups([]int64{1, 1, 2, 3})
    			if !reflect.DeepEqual(m.PodSecurityContext(), modifiedSC) {
    				t.Errorf("%s: unexpected object:\n%s", k, diff.ObjectGoPrintSideBySide(modifiedSC, m.PodSecurityContext()))
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ResourceOperationTest.groovy

        def "no progress event is logged for files < 1024 bytes"() {
            given:
            def operation = new ResourceOperation(context, Type.download)
            operation.contentLength = 1023
            when:
            operation.logProcessedBytes(1023)
            then:
            0 * context.progress(_)
        }
    
        def "logs processed bytes in KiB intervals"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

                @Provides
                BigDecimal createBigDecimal() {
                    return 123
                }
            })
    
            expect:
            10.times {
                start {
                    assert registry.getAll(Number).sort() == [12, 123]
                    assert registry.getAll(String).sort() == ["12", "123"]
                }
            }
        }
    
        def "cannot look up services while closing"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/files/profile-compatibility-version-1.22.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    meshConfig:
      # 1.22 behavioral changes
      defaultConfig:
        proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 342 bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/files/profile-compatibility-version-1.22.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    meshConfig:
      # 1.22 behavioral changes
      defaultConfig:
        proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 342 bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation_resourceclassparameters_test.go

    		},
    		"bad-namespace": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("metadata", "namespace"), badName, "a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character (e.g. 'my-name',  or '123-abc', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')")},
    			parameters:   testResourceClassParameters(goodName, badName, goodFilters),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceslice_test.go

    			slice:        testResourceSlice("", goodName, driverName),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    }
    
    const dns1123LabelFmt string = "[a-z0-9]([-a-z0-9]*[a-z0-9])?"
    const dns1123LabelErrMsg string = "a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character"
    
    // DNS1123LabelMaxLength is a label's max length in DNS (RFC 1123)
    const DNS1123LabelMaxLength int = 63
    
    var dns1123LabelRegexp = regexp.MustCompile("^" + dns1123LabelFmt + "$")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. manifests/charts/ztunnel/files/profile-compatibility-version-1.22.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    meshConfig:
      # 1.22 behavioral changes
      defaultConfig:
        proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 342 bytes
    - Viewed (0)
Back to top