Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 117 for 100xi1 (0.48 sec)

  1. src/net/netip/netip_pkg_test.go

    		if !got && tt.ipp != invalid {
    			t.Errorf("(%v == %v) = false, want true", tt.ipp, invalid)
    		}
    	}
    }
    
    var nextPrevTests = []struct {
    	ip   Addr
    	next Addr
    	prev Addr
    }{
    	{mustIP("10.0.0.1"), mustIP("10.0.0.2"), mustIP("10.0.0.0")},
    	{mustIP("10.0.0.255"), mustIP("10.0.1.0"), mustIP("10.0.0.254")},
    	{mustIP("127.0.0.1"), mustIP("127.0.0.2"), mustIP("127.0.0.0")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 15:37:19 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/path/filepath/match_test.go

    	// Prior to CVE-2022-30632, this would cause a stack exhaustion given a
    	// large number of separators (more than 4,000,000). There is now a limit
    	// of 10,000.
    	_, err := Glob("/*" + strings.Repeat("/", 10001))
    	if err != ErrBadPattern {
    		t.Fatalf("Glob returned err=%v, want ErrBadPattern", err)
    	}
    }
    
    func TestGlobError(t *testing.T) {
    	bad := []string{`[]`, `nonexist/[]`}
    	for _, pattern := range bad {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

            setup:
            def customMetaDataProvider = Mock(ProcessMetaDataProvider)
            def processIdentifier = RandomStringUtils.randomAlphanumeric(1000)
            1 * customMetaDataProvider.processIdentifier >> processIdentifier
            def customManager = new DefaultFileLockManager(customMetaDataProvider, 5000, contentionHandler, generator)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

            jar.manifest.mainAttributes.getValue('version') == "$expectedVersion"
    
            where:
            manifestContent << ["", "version: 0.0.1"]
            expectedVersion << ["1.0", "0.0.1"]
        }
    
        def "attribute value evaluates lazily"() {
            given:
            buildFile << """
                def versionNumber = objects.property(String)
                versionNumber.set("1.0")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    			ipFamilies: ipv4only,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP: "10.0.0.1",
    				},
    			},
    			expectedEndpointFamily: ipv4,
    		},
    		{
    			name:       "v4 service, in a dual stack cluster",
    			ipFamilies: ipv4ipv6,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP: "10.0.0.1",
    				},
    			},
    			expectedEndpointFamily: ipv4,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    			}
    		})
    	}
    }
    
    func TestAddrFromSlice(t *testing.T) {
    	tests := []struct {
    		ip       []byte
    		wantAddr Addr
    		wantOK   bool
    	}{
    		{
    			ip:       []byte{10, 0, 0, 1},
    			wantAddr: mustIP("10.0.0.1"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0xfe, 0x80, 15: 0x01},
    			wantAddr: mustIP("fe80::01"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0, 1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/users/users_linux_test.go

    			file:          "foo:x:101:bar:::\n",
    			totalFields:   totalFieldsUser,
    			expectedError: true,
    		},
    		{
    			name:        "valid file for users",
    			file:        "\nfoo:x:100:101:foo:/home/foo:/bin/bash\n\nbar:x:102:103:bar::\n",
    			totalFields: totalFieldsUser,
    			expectedEntries: []*entry{
    				{name: "foo", id: 100, gid: 101, shell: "/bin/bash"},
    				{name: "bar", id: 102, gid: 103},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 16.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    func.func @select(
        %arg0: tensor<1x3xi1>,
        %arg1: tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>,
        %arg2: tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>
      ) -> tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>> {
      %0 = "stablehlo.select"(%arg0, %arg1, %arg2) : (
        tensor<1x3xi1>,
        tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/shifts.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package shifts
    
    func shifts0() {
    	// basic constant shifts
    	const (
    		s = 10
    		_ = 0<<0
    		_ = 1<<s
    		_ = 1<<- /* ERROR "negative shift count" */ 1
    		// For the test below we may decide to convert to int
    		// rather than uint and then report a negative shift
    		// count instead, which might be a better error. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. cni/pkg/plugin/plugin_test.go

                    "sandbox": "%s"
                }
            ],
            "ips": [
                {
                    "version": "4",
                    "address": "10.0.0.2/24",
                    "gateway": "10.0.0.1",
                    "interface": 0
                }
            ],
            "routes": []
    
        },
        "plugin_log_level": "debug",
        "cni_event_address": "%s",
        "ambient_enabled": %t,
        "kubernetes": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top