Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for 100xi1 (0.09 sec)

  1. cmd/sftp-server-driver.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/pkg/v3/mimedb"
    	"github.com/pkg/sftp"
    	"golang.org/x/crypto/ssh"
    )
    
    // Maximum write offset for incoming SFTP blocks.
    // Set to 100MiB to prevent hostile DOS attacks.
    const ftpMaxWriteOffset = 100 << 20
    
    type sftpDriver struct {
    	permissions *ssh.Permissions
    	endpoint    string
    }
    
    //msgp:ignore sftpMetrics
    type sftpMetrics struct{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	fx.WaitOrFail(t, "xds")
    
    	sc.CreateOrUpdate(generateService("svc1", testNS, map[string]string{}, // labels
    		map[string]string{}, // annotations
    		[]int32{80},
    		map[string]string{"app": "a"}, // selector
    		"10.0.0.1",
    	))
    	fx.WaitOrFail(t, "xds")
    
    	createOrUpdateNamespace(t, s, testNS, "")
    	createOrUpdateNamespace(t, s, systemNS, "")
    
    	tracker.WaitOrdered(testNS, systemNS)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/mesh_network_test.go

    						name:        "client-pod",
    						namespace:   "test",
    						ip:          "10.0.0.1",
    						port:        80,
    						clusterID:   "cluster-1",
    						metaNetwork: "network-1",
    					}
    					// expect self
    					client.ExpectWithWeight(client, "", xdstest.LocLbEpInfo{
    						Weight: 1,
    						LbEps: []xdstest.LbEpInfo{
    							{Address: "10.0.0.1", Weight: 1},
    						},
    					})
    					for subset, eps := range tc.expectations {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top