Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for bigN (0.09 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

                            ie.initCause(e);
                            throw ie;
                        }
                    }
                    else {
                        // not enough credits available or too big, split
                        if ( log.isDebugEnabled() ) {
                            log.debug("Not enough credits, split at " + last);
                        }
                        synchronized ( last ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    	// all of them.  Further down in the test, we use these to control loops, and
    	// that level of logic is enough complexity for me.
    	const collectionSize int32 = 11 // How big each collection is
    	const minimumOne int32 = 4      // integer minimum with one controller
    	const minimumTwo int32 = 7      // integer minimum with two controllers
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	if deleteDiff > dsc.burstReplicas {
    		deleteDiff = dsc.burstReplicas
    	}
    
    	dsc.expectations.SetExpectations(logger, dsKey, createDiff, deleteDiff)
    
    	// error channel to communicate back failures.  make the buffer big enough to avoid any blocking
    	errCh := make(chan error, createDiff+deleteDiff)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	}
    	return names[0:count]
    }
    
    // Check that reading a directory one entry at a time gives the same result
    // as reading it all at once.
    func TestReaddirnamesOneAtATime(t *testing.T) {
    	t.Parallel()
    
    	// big directory that doesn't change often.
    	dir := "/usr/bin"
    	switch runtime.GOOS {
    	case "android":
    		dir = "/system/bin"
    	case "ios", "wasip1":
    		wd, err := Getwd()
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    				_, updateErr := ctrl.storeVolumeUpdate(logger, newVol)
    				if updateErr != nil {
    					// We will get an "volume added" event soon, this is not a big error
    					logger.V(4).Info("provisionClaimOperation: cannot update internal cache", "volumeName", volume.Name, "err", updateErr)
    				}
    			}
    			break
    		}
    		// Save failed, try again after a while.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    	activeChains := sets.New[string]()
    	activeAffinitySets := sets.New[string]()
    
    	// Compute total number of endpoint chains across all services
    	// to get a sense of how big the cluster is.
    	totalEndpoints := 0
    	for svcName := range proxier.svcPortMap {
    		totalEndpoints += len(proxier.endpointsMap[svcName])
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. src/net/netip/netip_test.go

    			}
    		})
    	}
    
    	var invalidIPs = []string{
    		// Empty string
    		"",
    		// Garbage non-IP
    		"bad",
    		// Single number. Some parsers accept this as an IPv4 address in
    		// big-endian uint32 form, but we don't.
    		"1234",
    		// IPv4 with a zone specifier
    		"1.2.3.4%eth0",
    		// IPv4 field must have at least one digit
    		".1.2.3",
    		"1.2.3.",
    		"1..2.3",
    		// IPv4 address too long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    			// https://golang.org/issue/14449
    			return true
    		case "arm64":
    			if goos == "windows" {
    				// windows/arm64 internal linking is not implemented.
    				return true
    			}
    		case "ppc64":
    			// Big Endian PPC64 cgo internal linking is not implemented for aix or linux.
    			if goos == "aix" || goos == "linux" {
    				return true
    			}
    		}
    
    		switch goos {
    		case "android":
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/debug/elf/file_test.go

    	}
    }
    
    // TestLargeNumberOfSections tests the case that a file has greater than or
    // equal to 65280 (0xff00) sections.
    func TestLargeNumberOfSections(t *testing.T) {
    	// A file with >= 0xff00 sections is too big, so we will construct it on the
    	// fly. The original file "y.o" is generated by these commands:
    	// 1. generate "y.c":
    	//   for i in `seq 1 65288`; do
    	//     printf -v x "%04x" i;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  10. src/math/big/float_test.go

    // Copyright 2014 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.
    
    package big
    
    import (
    	"flag"
    	"fmt"
    	"math"
    	"strconv"
    	"strings"
    	"testing"
    )
    
    // Verify that ErrNaN implements the error interface.
    var _ error = ErrNaN{}
    
    func (x *Float) uint64() uint64 {
    	u, acc := x.Uint64()
    	if acc != Exact {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top