Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 360 for 12E0 (0.03 sec)

  1. cmd/kubeadm/app/phases/upgrade/versiongetter_test.go

    		wantClusterVersion string
    		wantParsedVersion  string
    		wantErr            bool
    	}{
    		{
    			name: "cluster version is valid",
    			version: &version.Info{
    				GitVersion: "1.20.0",
    			},
    			wantClusterVersion: "1.20.0",
    			wantParsedVersion:  "1.20.0",
    			wantErr:            false,
    		},
    		{
    			name:               "cluster version is empty",
    			version:            &version.Info{},
    			wantClusterVersion: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. test/codegen/bits.go

     * 32-bit instructions
     ************************************/
    
    func bitcheck32_constleft(a uint32) (n int) {
    	// amd64:"BTL\t[$]31"
    	if a&(1<<31) != 0 {
    		return 1
    	}
    	// amd64:"BTL\t[$]28"
    	if a&(1<<28) != 0 {
    		return 1
    	}
    	// amd64:"BTL\t[$]0"
    	if a&(1<<0) != 0 {
    		return 1
    	}
    	return 0
    }
    
    func bitcheck32_constright(a [8]uint32) (n int) {
    	// amd64:"BTL\t[$]31"
    	if (a[0]>>31)&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/endpoint_test.go

    			hostport:      "1..3.4:1234",
    			expectedError: true,
    		},
    		{
    			name:          "invalid ipv6",
    			hostport:      "1200::AB00:1234::2552:7777:1313",
    			expectedError: true,
    		},
    		{
    			name:          "invalid ipv6:port",
    			hostport:      "[1200::AB00:1234::2552:7777:1313]:1234",
    			expectedError: true,
    		},
    	}
    
    	for _, rt := range tests {
    		t.Run(rt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 03:19:26 UTC 2019
    - 10K bytes
    - Viewed (0)
  4. src/test/resources/plugin/repo2/fess-ds-atlassian/12.2.0-SNAPSHOT/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata modelVersion="1.1.0">
      <groupId>org.codelibs.fess</groupId>
      <artifactId>fess-ds-atlassian</artifactId>
      <version>12.2.0-SNAPSHOT</version>
      <versioning>
        <snapshot>
          <timestamp>20180814.210714</timestamp>
          <buildNumber>10</buildNumber>
        </snapshot>
        <lastUpdated>20180814210714</lastUpdated>
        <snapshotVersions>
          <snapshotVersion>
            <extension>jar</extension>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 15 02:16:52 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_getx.txt

    # A bug had caused us to log schemeless URLs instead.
    go get -x golang.org/x/text@v0.1.0
    stderr '^# get https://golang.org/x/text\?go-get=1$'
    stderr '^# get https://golang.org/x/text\?go-get=1: 200 OK \([0-9.]+s\)$'
    ! stderr '^# get //.*'
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 422 bytes
    - Viewed (0)
  6. test/fixedbugs/bug314.go

    // run
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to call wrong methods; issue 1290.
    
    package main
    
    type S struct {
    }
    func (S) a() int{
    	return 0
    }
    func (S) b() int{
    	return 1
    }
    
    func main() {
    	var i interface {
    		b() int
    		a() int
    	} = S{}
    	if i.a() != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 471 bytes
    - Viewed (0)
  7. src/cmd/internal/src/xpos_test.go

    	b2 := NewFileBase("b2", "b2")
    	b3 := NewLinePragmaBase(MakePos(b1, 10, 0), "b3", "b3", 123, 0)
    
    	var tab PosTable
    	for _, want := range []Pos{
    		NoPos,
    		MakePos(nil, 0, 0), // same table entry as NoPos
    		MakePos(b1, 0, 0),
    		MakePos(nil, 10, 20), // same table entry as NoPos
    		MakePos(b2, 10, 20),
    		MakePos(b3, 10, 20),
    		MakePos(b3, 123, 0), // same table entry as MakePos(b3, 10, 20)
    	} {
    		xpos := tab.XPos(want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http/StatusLineTest.kt

        assertInvalid(" 200 OK")
      }
    
      @Test
      fun protocolVersions() {
        assertInvalid("HTTP/2.0 200 OK")
        assertInvalid("HTTP/2.1 200 OK")
        assertInvalid("HTTP/-.1 200 OK")
        assertInvalid("HTTP/1.- 200 OK")
        assertInvalid("HTTP/0.1 200 OK")
        assertInvalid("HTTP/101 200 OK")
        assertInvalid("HTTP/1.1_200 OK")
      }
    
      @Test
      fun nonThreeDigitCode() {
        assertInvalid("HTTP/1.1  OK")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/post-quantize-dynamic-range.mlir

      %0 = "quantfork.stats"(%arg0) {layerStats = dense<[0.000000e+00, 2.550000e+02]> : tensor<2xf32>} : (tensor<1x1x1x1xf32>) -> tensor<1x1x1x1xf32>
      %w_1 = arith.constant dense<127.0> : tensor<4096x1x1x1xf32>
      %w_2 = arith.constant dense<127.0> : tensor<128x1x1x1xf32>
      %b = arith.constant dense<127.0> : tensor<2048x1x1x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. docs/en/docs/img/deployment/https/https06.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
    - 17.1K bytes
    - Viewed (0)
Back to top