Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for big4 (0.06 sec)

  1. 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)
  2. 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)
  3. pkg/proxy/iptables/proxier.go

    	// is just for efficiency, not correctness.
    	args := make([]string, 64)
    
    	// 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])
    	}
    	proxier.largeClusterMode = (totalEndpoints > largeClusterEndpointsThreshold)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    // ordering needs to match the same byte ordering the compiler would emit. The compiler always
    // emits the bitmap data in little endian byte ordering, so on big endian platforms these
    // uintptrs will have their byte orders swapped from what they normally would be.
    //
    // heapBitsInSpan(span.elemsize) or span.isUserArenaChunk must be true.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    		//
    		// This happens repeatedly for all objects that are created concurrently() avoiding this
    		// as a List() call is an important performance improvement.
    		//
    		// Spark based s3a committers are a  big enough use-case to have this optimization.
    		//
    		// A sample code to see the improvements is as follows, this sample code is
    		// simply a read on JSON from MinIO and write it back as "parquet".
    		//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    			// We stop counting pods and removing finalizers here to:
    			// 1. Ensure that the UIDs representation are under 20 KB.
    			// 2. Cap the number of finalizer removals so that syncing of big Jobs
    			//    doesn't starve smaller ones.
    			//
    			// The job will be synced again because the Job status and Pod updates
    			// will put the Job back to the work queue.
    			reachedMaxUncountedPods = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    	width: 100%;
    	margin-bottom: 0;
    }
    
    .gist .file-data>table td.line-data {
    	width: 99%;
    }
    
    div.unbreakable {
    	page-break-inside: avoid;
    }
    
    .big {
    	font-size: larger;
    }
    
    .small {
    	font-size: smaller;
    }
    
    .underline {
    	text-decoration: underline;
    }
    
    .overline {
    	text-decoration: overline;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    See the `link:{groovyDslPath}/org.gradle.api.file.ProjectLayout.html[ProjectLayout]` interface for details.
    
    Note that, at this stage, Gradle will not print deprecation warnings if you still use `Project.buildDir`.
    We know this is a big change and want to give time for authors of major plugins to move away from its usage first.
    
    The switch from a `File` to a `DirectoryProperty` requires adaptations in build logic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top