Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 360 for 12E0 (0.04 sec)

  1. docs/en/docs/img/deployment/https/https07.drawio

                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="1240" y="390"/>
                                <mxPoint x="1240" y="700"/>
                            </Array>
                        </mxGeometry>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 18.7K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/TestResultModelTest.groovy

    class TestResultModelTest extends Specification {
        def formatsShortDurations() {
            expect:
            test(0).formattedDuration == '0s'
            test(7).formattedDuration == '0.007s'
            test(1200).formattedDuration == '1.200s'
        }
    
        def formatsLongDuration() {
            expect:
            test(60000).formattedDuration == '1m0.00s'
            test(72301).formattedDuration == '1m12.30s'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. go.work

    // This is a generated file. Do not edit directly.
    
    go 1.22.0
    
    use (
    	.
    	./staging/src/k8s.io/api
    	./staging/src/k8s.io/apiextensions-apiserver
    	./staging/src/k8s.io/apimachinery
    	./staging/src/k8s.io/apiserver
    	./staging/src/k8s.io/cli-runtime
    	./staging/src/k8s.io/client-go
    	./staging/src/k8s.io/cloud-provider
    	./staging/src/k8s.io/cluster-bootstrap
    	./staging/src/k8s.io/code-generator
    	./staging/src/k8s.io/component-base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/runtime/zcallback_windows_arm.s

    	MOVW	$1196, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1197, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1198, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1199, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1200, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1201, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1202, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1203, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1204, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  5. tests/integration/security/fuzz/backends/nginx/nginx.yaml

      name: nginx
    spec:
      selector:
        matchLabels:
          app: nginx
      template:
        metadata:
          labels:
            app: nginx
        spec:
          containers:
            - name: nginx
              image: nginx:1.20.0
              ports:
                - containerPort: 80
              volumeMounts:
                - name: public-html
                  mountPath: /usr/share/nginx/html/private
          volumes:
            - name: public-html
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/quantize-dynamic-range.mlir

    }
    
    // CHECK-LABEL: QuantizeDepthwiseConv2D
    // PerTensor-LABEL: QuantizeDepthwiseConv2D
    func.func @QuantizeDepthwiseConv2D(%arg0: tensor<1x224x224x3xf32>) -> tensor<1x112x112x64xf32> {
      %w = arith.constant dense<127.0> : tensor<64x3x3x3xf32>
      %b = arith.constant dense<0.0> : tensor<64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 21:09:00 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionResolveIntegrationTest.groovy

            }
    
            when:
            resetExpectations()
            repository {
                'org.test:projectA:1.2.10'()
            }
            repositoryInteractions {
                'org.test:projectA' {
                    expectVersionListing()
                }
                'org.test:projectA:1.2.10' {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. pkg/util/image/registry.go

    )
    
    // Exists returns true if the image in the argument exists in a container registry.
    // The argument must be a complete image name, e.g. "gcr.io/istio-release/pilot:1.20.0".
    // If the image does not exist, it returns false and an optional error message, for debug purposes.
    func Exists(image string) (bool, error) {
    	ref, err := name.ParseReference(image)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 16:28:36 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. operator/version/version.go

    	"time"
    
    	pkgversion "istio.io/istio/operator/pkg/version"
    	buildversion "istio.io/istio/pkg/version"
    )
    
    const (
    	// OperatorCodeBaseVersion is the version string from the code base.
    	OperatorCodeBaseVersion = "1.23.0"
    	OperatorEOLYear         = 2025
    	OperatorEOLMonth        = time.April
    )
    
    var (
    	// OperatorVersionString is the version string of this operator binary.
    	OperatorVersionString string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/go/ast/print_test.go

    		`0  [3]int {
    		1  .  0: 1
    		2  .  1: 2
    		3  .  2: 3
    		4  }`},
    	{[...]int{42},
    		`0  [1]int {
    		1  .  0: 42
    		2  }`},
    
    	// slices
    	{[]int{}, `0  []int (len = 0) {}`},
    	{[]int{1, 2, 3},
    		`0  []int (len = 3) {
    		1  .  0: 1
    		2  .  1: 2
    		3  .  2: 3
    		4  }`},
    
    	// structs
    	{struct{}{}, `0  struct {} {}`},
    	{struct{ x int }{007}, `0  struct { x int } {}`},
    	{struct{ X, y int }{42, 991},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top