Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for 1223 (0.11 sec)

  1. manifests/charts/gateway/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)
  2. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    }
    
    // This type and the following one will have the same size.
    type Vanilla struct {
    	np uintptr
    	x  [1024]int
    }
    
    type Vanilla2 struct {
    	np uintptr
    	x  [1023]int
    	y  int
    }
    
    type Single struct {
    	np uintptr
    	x  [1023]int
    }
    
    var G int
    
    //go:noinline
    func clobber() {
    	G++
    }
    
    func ABC(i, j int) int {
    	r := 0
    
    	// here v2 and v3 can be overlapped.
    	clobber()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableModuleVersionListingResolveResultTest.groovy

            !descriptor.hasResult()
        }
    
        def "can mark as listed using version strings"() {
            when:
            descriptor.listed(['1.2', '1.3'])
    
            then:
            descriptor.state == Listed
            descriptor.authoritative
            descriptor.versions == ['1.2', '1.3'] as Set
        }
    
        def "can mark as failed"() {
            org.gradle.internal.Factory<String> broken = { "too bad" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. hack/tools/go.work

    // This is a hack, but it prevents go from climbing further and trying to
    // reconcile the various deps across the "real" modules and this one.
    
    go 1.22.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 162 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

        }
    
        def "no progress events logged for resources smaller 1024 bytes"() {
            setup:
            metaData.getContentLength() >> 1023
            expectReadBuildOperation(1023)
            expectResourceRead(new ByteArrayInputStream(new byte[1023]))
    
            when:
            accessor.withContent(location, false, action)
    
            then:
            1 * action.execute(_, _) >> { inputStream, metaData ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/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. manifests/charts/istio-operator/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)
  8. manifests/charts/gateways/istio-ingress/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)
  9. 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)
  10. 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)
Back to top