Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 184 for 1e23 (0.04 sec)

  1. 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)
  2. 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)
  3. build-logic-commons/gradle-plugin/build.gradle.kts

        // This Kotlin version should only be updated when updating the above kotlin-dsl version
        implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23")
        implementation("org.gradle.kotlin:gradle-kotlin-dsl-conventions")
        implementation("org.gradle:test-retry-gradle-plugin:1.5.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 977 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/testing/toolchains/internal/KotlinTestTestToolchain.java

        /**
         * The default version of KotlinTest to use for compiling and executing tests.
         */
        public static final String DEFAULT_VERSION = "1.9.23";
        private static final String GROUP_NAME = "org.jetbrains.kotlin:kotlin-test-junit5";
    
        @Override
        public Iterable<Dependency> getImplementationDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_arm.s

    	ROUND3(Rd, Ra, Rb, Rc,  8, 11, Rc1)
    	ROUND3(Rc, Rd, Ra, Rb, 11, 16, Rc2)
    	ROUND3(Rb, Rc, Rd, Ra, 14, 23, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND3(Ra, Rb, Rc, Rd,  1,	4, Rc0)
    	ROUND3(Rd, Ra, Rb, Rc,  4, 11, Rc1)
    	ROUND3(Rc, Rd, Ra, Rb,  7, 16, Rc2)
    	ROUND3(Rb, Rc, Rd, Ra, 10, 23, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND3(Ra, Rb, Rc, Rd, 13,	4, Rc0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http/HttpDateTest.kt

      @AfterEach
      @Throws(Exception::class)
      fun tearDown() {
        TimeZone.setDefault(originalDefault)
      }
    
      @Test
      @Throws(Exception::class)
      fun parseStandardFormats() {
        // RFC 822, updated by RFC 1123 with GMT.
        assertThat("Thu, 01 Jan 1970 00:00:00 GMT".toHttpDateOrNull()!!.time).isEqualTo(0L)
        assertThat("Fri, 06 Jun 2014 12:30:30 GMT".toHttpDateOrNull()!!.time).isEqualTo(1402057830000L)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    			schedulingCtx: testPodSchedulingContexts("", goodNS, goodPodSchedulingSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top