Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 398 for pread (0.08 sec)

  1. src/go/types/eval.go

    	var scope *Scope
    	if pkg == nil {
    		scope = Universe
    		pos = nopos
    	} else if !pos.IsValid() {
    		scope = pkg.scope
    	} else {
    		// The package scope extent (position information) may be
    		// incorrect (files spread across a wide range of fset
    		// positions) - ignore it and just consider its children
    		// (file scopes).
    		for _, fscope := range pkg.scope.children {
    			if scope = fscope.Innermost(pos); scope != nil {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/ro/stopwords.txt

    noastre
    noi
    noştri
    nostru
    nu
    ori
    oricând
    oricare
    oricât
    orice
    oricînd
    oricine
    oricît
    oricum
    oriunde
    până
    pe
    pentru
    peste
    pînă
    poate
    pot
    prea
    prima
    primul
    prin
    printr
    sa
    să
    săi
    sale
    sau
    său
    se
    şi
    sînt
    sîntem
    sînteţi
    spre
    sub
    sunt
    suntem
    sunteţi
    ta
    tăi
    tale
    tău
    te
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    			nodes:        []*v1.Node{makeImageNode("node1", node403002000), makeImageNode("node2", node25010)},
    			expectedList: []framework.NodeScore{{Name: "node1", Score: 0}, {Name: "node2", Score: 5}},
    			name:         "two images spread on two nodes, prefer the larger image one",
    		},
    		{
    			// Pod: gcr.io/40 gcr.io/300
    
    			// Node1
    			// Image: gcr.io/40:latest 40MB, gcr.io/300:latest 300MB
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3StaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "execute(command, new String[] {'FOOBAR=foobar'}, null)", "", "foobar"],
                [fromString(), "execute(command, null, file('$pwd'))", pwd, ""],
                // Spread calls
                [fromString(), "execute(*[command, new String[] {'FOOBAR=foobar'}, file('$pwd')])", pwd, "foobar"],
                [fromString(), "execute(*[command, ['FOOBAR=foobar'], file('$pwd')])", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. pkg/keepalive/options.go

    	Timeout time.Duration
    	// MaxServerConnectionAge is a duration for the maximum amount of time a
    	// connection may exist before it will be closed by the server sending a GoAway.
    	// A random jitter is added to spread out connection storms.
    	// See https://github.com/grpc/grpc-go/blob/bd0b3b2aa2a9c87b323ee812359b0e9cda680dad/keepalive/keepalive.go#L49
    	MaxServerConnectionAge time.Duration // default value is infinity
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters.go

    	// remote gateways (if any)
    	filtered := make([]*LocalityEndpoints, 0)
    
    	// Scale all weights by the lcm of gateways per network and gateways per cluster.
    	// This will allow us to more easily spread traffic to the endpoint across multiple
    	// network gateways, increasing reliability of the endpoint.
    	scaleFactor := b.gateways().GetLBWeightScaleFactor()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    include::sample[dir="snippets/providers/property/kotlin",files="build.gradle.kts[tags=prop-managed]"]
    include::sample[dir="snippets/providers/property/groovy",files="build.gradle[tags=prop-managed]"]
    ====
    
    Or _read-only_, meaning that it has only a `get()` method.
    The _read-only_ properties are _providers_:
    
    ====
    include::sample[dir="snippets/providers/property/kotlin",files="build.gradle.kts[tags=prov-managed]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/math/rand/rand_test.go

    		}
    	}
    }
    
    func testReadUniformity(t *testing.T, n int, seed int64) {
    	r := New(NewSource(seed))
    	buf := make([]byte, n)
    	nRead, err := r.Read(buf)
    	if err != nil {
    		t.Errorf("Read err %v", err)
    	}
    	if nRead != n {
    		t.Errorf("Read returned unexpected n; %d != %d", nRead, n)
    	}
    
    	// Expect a uniform distribution of byte values, which lie in [0, 255].
    	var (
    		mean       = 255.0 / 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    	if selector.Empty() {
    		return nil, nil
    	}
    	for i := range constraints {
    		constraints[i].Selector = selector
    	}
    	return constraints, nil
    }
    
    // nodeLabelsMatchSpreadConstraints checks if ALL topology keys in spread Constraints are present in node labels.
    func nodeLabelsMatchSpreadConstraints(nodeLabels map[string]string, constraints []topologySpreadConstraint) bool {
    	for _, c := range constraints {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/internal/poll/copy_file_range_linux.go

    			// don't mark copy_file_range(2) as unsupported.
    			return 0, false, nil
    		case nil:
    			if n == 0 {
    				// If we did not read any bytes at all,
    				// then this file may be in a file system
    				// where copy_file_range silently fails.
    				// https://lore.kernel.org/linux-fsdevel/20210126233840.GG4626@dread.disaster.area/T/#m05753578c7f7882f6e9ffe01f981bc223edef2b0
    				if written == 0 {
    					return 0, false, nil
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 17:40:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top