Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 135 for 1223 (0.07 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionSelectorSchemeTest.groovy

            where:
            selector << [
                "1+",
                "1.2.3+"
            ]
        }
    
        def "creates latest version selector"() {
            expect:
            matcher.parseSelector(selector) instanceof LatestVersionSelector
    
            where:
            selector << [
                "latest.integration",
                "latest.foo",
                "latest.123"
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. src/cmd/internal/src/pos_test.go

    		{MakePos(nil, 1, 2), MakePos(nil, 1, 1), true, false, true},
    		{MakePos(nil, 123, 1), MakePos(nil, 1, 123), true, false, true},
    
    		{MakePos(b1, 1, 1), MakePos(b1, 1, 1), true, false, false},
    		{MakePos(b1, 1, 1), MakePos(b1, 1, 2), true, true, false},
    		{MakePos(b1, 1, 2), MakePos(b1, 1, 1), true, false, true},
    		{MakePos(b1, 123, 1), MakePos(b1, 1, 123), true, false, true},
    
    		{MakePos(b1, 1, 1), MakePos(b2, 1, 1), true, true, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 14 23:50:26 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  3. test/method4.dir/prog.go

    	}
    }
    
    func main() {
    	a := []int{1, 2, 3}
    	t1 := T1(4)
    	t2 := &T2{4}
    
    	eq(t1.Sum(a, 5), 15)
    	eq(t2.Sum(a, 6), 16)
    
    	eq(T1.Sum(t1, a, 7), 17)
    	eq((*T2).Sum(t2, a, 8), 18)
    
    	f1 := T1.Sum
    	eq(f1(t1, a, 9), 19)
    	f2 := (*T2).Sum
    	eq(f2(t2, a, 10), 20)
    
    	eq(I1.Sum(t1, a, 11), 21)
    	eq(I1.Sum(t2, a, 12), 22)
    
    	f3 := I1.Sum
    	eq(f3(t1, a, 13), 23)
    	eq(f3(t2, a, 14), 24)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 07 12:26:48 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  4. test/slice3err.go

    	_ = array[1:11] // ERROR "out of bounds"
    	_ = array[1:11:12] // ERROR "out of bounds"
    	_ = array[1:2:11] // ERROR "out of bounds"
    	_ = array[1:11:3] // ERROR "out of bounds|invalid slice index"
    	_ = array[11:2:3] // ERROR "out of bounds|inverted slice|invalid slice index"
    	_ = array[11:12:13] // ERROR "out of bounds"
    
    	// slice bounds not checked
    	_ = slice[11:11]
    	_ = slice[11:12]
    	_ = slice[11:]
    	_ = slice[:11]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/DefaultTestClassScannerTest.groovy

                FileVisitor visitor = args[0]
                assert visitor
                visitor.visitFile(stubFileVisitDetails('AnonymousClass$1'))
                visitor.visitFile(stubFileVisitDetails('AnonymousClass$1$22'))
            }
    
            0 * _._
        }
    
        FileVisitDetails stubFileVisitDetails(String className) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/prepare_quantize_ptq.mlir

          layerStats = dense<[-1.28, 1.28]> : tensor<2xf32>
        } : (tensor<*xf32>) -> tensor<*xf32>
        %1 = "tf.MaxPool"(%0) {
          data_format = "NHWC", device = "", explicit_paddings = [],
          ksize = [1, 2, 2, 1], padding = "VALID", strides = [1, 2, 2, 1]
        } : (tensor<*xf32>) -> tensor<*xf32>
        %2 = "quantfork.stats"(%1) {
          layerStats = dense<[-0.9, 1.0]> : tensor<2xf32>
        } : (tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 01 10:21:29 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/SelectOptionPromptEventTest.groovy

        def "formats prompt"() {
            def event = new SelectOptionPromptEvent(123, "question", ["11", "12", "13"], 1)
    
            assert event.prompt == TextUtil.toPlatformLineSeparators("""question:
      1: 11
      2: 12
      3: 13
    Enter selection (default: 12) [1..3] """)
        }
    
        def "accepts valid input"() {
            def event = new SelectOptionPromptEvent(123, "question", ["1", "2", "3", "4"], 1)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/AbstractComponentSelectionRulesIntegrationTest.groovy

                                withBranch('test')
                                withStatus('milestone')
                            }
                        }
                        '1.2'()
                        '2.0' {
                            withModule(org.gradle.test.fixtures.ivy.IvyModule) {
                                withBranch('test')
                                withStatus('milestone')
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/go.mod

    // This is a generated file. Do not edit directly.
    
    module k8s.io/apimachinery
    
    go 1.22.0
    
    require (
    	github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
    	github.com/fxamacker/cbor/v2 v2.7.0-beta
    	github.com/gogo/protobuf v1.3.2
    	github.com/golang/protobuf v1.5.4
    	github.com/google/gnostic-models v0.6.8
    	github.com/google/go-cmp v0.6.0
    	github.com/google/gofuzz v1.2.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/endpoint.go

    		return host, port, nil
    	}
    
    	// if host is a validate RFC-1123 subdomain, returns it
    	if errs := validation.IsDNS1123Subdomain(host); len(errs) == 0 {
    		return host, port, nil
    	}
    
    	return "", "", errors.Errorf("hostport %s: host '%s' must be a valid IP address or a valid RFC-1123 DNS subdomain", hostport, host)
    }
    
    // ParsePort parses a string representing a TCP port.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 11 15:08:59 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top