Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for Shardz (0.1 sec)

  1. pkg/kubelet/eviction/helpers.go

    				MinReclaim: threshold.MinReclaim,
    			})
    		}
    	}
    	return append(append([]evictionapi.Threshold{}, thresholds...), additionalThresholds...)
    }
    
    // UpdateContainerFsThresholds will add containerfs eviction hard/soft
    // settings based on container runtime settings.
    // Thresholds are parsed from evictionHard and evictionSoft limits so we will override.
    // If there is a single filesystem, then containerfs settings are same as nodefs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			reqWaitLimitExpected:  5 * time.Second, // from now
    		},
    		{
    			name: "context has a deadline, wait limit should not exceed the hard limit of 1m",
    			parent: func(now time.Time) (context.Context, context.CancelFunc) {
    				// let 1/4th of the remaining deadline exceed the hard limit
    				return context.WithDeadline(context.Background(), now.Add(8*time.Minute))
    			},
    			newReqWaitCtxExpected: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    				matches = append(matches, nil)
    			}
    			for _, m := range matches {
    				if m != nil {
    					r.Matches = []k8s.HTTPRouteMatch{*m}
    				}
    				vs, err := convertHTTPRoute(r, ctx, obj, n, !mesh)
    				// This was a hard error
    				if vs == nil {
    					res.error = err
    					return conversionResult{error: err}
    				}
    				// Got an error but also routes
    				if err != nil {
    					res.error = err
    				}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. cmd/xl-storage_test.go

    	shardSize := int64(1024 * 1024)
    	shard := make([]byte, shardSize)
    	w := newStreamingBitrotWriter(storage, "", volName, fileName, size, algo, shardSize)
    	reader := bytes.NewReader(data)
    	for {
    		// Using io.Copy instead of this loop will not work for us as io.Copy
    		// will use bytes.Reader.WriteTo() which will not do shardSize'ed writes
    		// causing error.
    		n, err := reader.Read(shard)
    		w.Write(shard[:n])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    }
                    module("org:d:1.0") {
                        module("org:a:2.0")
                    }
                }
            }
        }
    
        def "evicted hard dependency shouldn't add constraint on range"() {
            given:
            4.times { mavenRepo.module("org", "e", "${it + 1}").publish() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. cmd/erasure-healing_test.go

    			disks := er.getDisks()
    			distribution := hashOrder(pathJoin(bucket, object), nDisks)
    			shuffledDisks := shuffleDisks(disks, distribution)
    
    			// remove last data shard
    			err = removeAll(pathJoin(shuffledDisks[11].String(), bucket, object))
    			if err != nil {
    				t.Fatalf("Failed to delete a file - %v", err)
    			}
    			_, err = obj.HealObject(ctx, bucket, object, "", madmin.HealOpts{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      for (auto val : tmp_host_outputs) {
        if (!external_outputs.contains(val)) host_outputs.push_back(val);
      }
    }
    
    // Output `shard_type`, which is the type of each shard, given `full_type`. If
    // the full shape is (num_cores_per_replica * a, b, c), then the shard shape is
    // (a, b, c). `context_op` is used for error reporting, in case of errors.
    LogicalResult GetShardShapedType(Operation* context_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. tests/integration/security/authz_test.go

    			allProviders := append(authzServer.Providers(), localAuthzServer.Providers()...)
    			for _, provider := range allProviders {
    				t.NewSubTest(provider.Name()).Run(func(t framework.TestContext) {
    					// The ext-authz server is hard-coded to allow requests from any service account ending in
    					// "/sa/a". Since the namespace is ignored, we use ns2.B for our denied app (rather than ns2.A).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    			// listeners and then add a catch all egress listener for all
    			// other ports. Doing so allows people to restrict the set of
    			// services exposed on one or more listeners, and avoid hard
    			// port conflicts like tcp taking over http or http taking over
    			// tcp, or simply specify that of all the listeners that Istio
    			// generates, the user would like to have only specific sets of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    		// then there'll also be a runtime.systemstack frame. To keep stack
    		// traces somewhat consistent whether or not static lock ranking is
    		// enabled, we'd like to skip those. But it's hard to tell how long
    		// we've been on the system stack so accept an extra frame in that case,
    		// with a leaf of "runtime.unlockWithRank runtime.unlock" instead of
    		// "runtime.unlock".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top