Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for sumneg (0.75 sec)

  1. cmd/object-api-listobjects_test.go

    				{Name: "Asia-maps.png"},
    				{Name: "Asia/India/India-summer-photos-1"},
    				{Name: "Asia/India/Karnataka/Bangalore/Koramangala/pics"},
    				{Name: "newPrefix0"},
    				{Name: "newPrefix1"},
    			},
    		},
    		// ListObjectsResult-2.
    		// (TestCase 24).
    		2: {
    			IsTruncated: true,
    			Objects: []ObjectInfo{
    				{Name: "Asia-maps.png"},
    				{Name: "Asia/India/India-summer-photos-1"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                    log.debug("Using SMB2 only negotiation");
                    return negotiate2(null);
                }
    
                SmbComNegotiate comNeg = new SmbComNegotiate(getContext().getConfig(), this.signingEnforced);
                int n = negotiateWrite(comNeg, true);
                negotiatePeek();
    
                SmbNegotiationResponse resp = null;
    
                if ( !this.smb2 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      }
    }
    
    # TODO(pjh): this is copied from
    # https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1#L98.
    # See if there's a way to fetch or construct the "management subnet" so that
    # this is not needed.
    function ConvertTo_DecimalIP
    {
      param(
        [parameter(Mandatory = $true, Position = 0)]
        [Net.IPAddress] $IPAddress
      )
    
      $i = 3; $decimal_ip = 0;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

         "isGateway": true,
         "ipMasq": true,
         "promiscMode": true,
         "ipam": {
           "type": "host-local",
           "ranges": [
             [{
               "subnet": "10.88.0.0/16"
             }],
             [{
               "subnet": "2001:db8:4860::/64"
             }]
           ],
           "routes": [
             { "dst": "0.0.0.0/0" },
             { "dst": "::/0" }
           ]
         }
       },
       {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier.go

    	// Get HNS network information
    	hnsNetworkInfo, err := getNetworkInfo(hns, hnsNetworkName)
    	if err != nil {
    		return nil, err
    	}
    
    	// Network could have been detected before Remote Subnet Routes are applied or ManagementIP is updated
    	// Sleep and update the network to include new information
    	if isOverlay(hnsNetworkInfo) {
    		time.Sleep(10 * time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		if ip == nil {
    			t.Errorf("invalid IP address %s : %s", svc.AutoAllocatedIPv4Address, svc.Hostname.String())
    		}
    		// Validate that IP address is in the expected range.
    		_, subnet, _ := net.ParseCIDR("240.240.0.0/16")
    		if !subnet.Contains(ip) {
    			t.Errorf("IP address not in range %s : %s", svc.AutoAllocatedIPv4Address, svc.Hostname.String())
    		}
    	}
    	assert.Equal(t, maxIPs, len(gotIPMap))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MULW", argLength: 2, reg: gp21, asm: "MULW", commutative: true},                                       // arg0 * arg1, 32-bit
    		{name: "MNEG", argLength: 2, reg: gp21, asm: "MNEG", commutative: true},                                       // -arg0 * arg1
    		{name: "MNEGW", argLength: 2, reg: gp21, asm: "MNEGW", commutative: true},                                     // -arg0 * arg1, 32-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    // external network in parallel. If non-nil, it contains one buffer slot per
    // test (send to acquire), with a low enough limit that the overall number of
    // connections (summed across subprocesses) stays at or below base.NetLimit.
    var netTestSem chan struct{}
    
    var exeSuffix string = func() string {
    	if runtime.GOOS == "windows" {
    		return ".exe"
    	}
    	return ""
    }()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top