Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for Paging (0.09 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    	}
    }
    
    func TestTaintTolerationFilter(t *testing.T) {
    	tests := []struct {
    		name       string
    		pod        *v1.Pod
    		node       *v1.Node
    		wantStatus *framework.Status
    	}{
    		{
    			name: "A pod having no tolerations can't be scheduled onto a node with nonempty taints",
    			pod:  podWithTolerations("pod1", []v1.Toleration{}),
    			node: nodeWithTaints("nodeA", []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// AuditPolicyRuleEvaluator makes the decision of whether and how to audit log a request.
    	AuditPolicyRuleEvaluator audit.PolicyRuleEvaluator
    	// ExternalAddress is the host name to use for external (public internet) facing URLs (e.g. Swagger)
    	// Will default to a value based on secure serving info and available ipv4 IPs.
    	ExternalAddress string
    
    	// TracerProvider can provide a tracer, which records spans for distributed tracing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    // RFC-1123 compliant DNS strings are added to altNames.DNSNames as strings
    // RFC-1123 compliant wildcard DNS strings are added to altNames.DNSNames as strings
    // certNames is used to print user facing warnings and should be the name of the cert the altNames will be used for
    func appendSANsToAltNames(altNames *certutil.AltNames, SANs []string, certName string) {
    	for _, altname := range SANs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_traffic_policy.go

    		// where multiple endpoints in a cluster are terminated. In these scenarios the circuit breaker can kick
    		// in before Pilot is able to deliver an updated endpoint list to Envoy, leading to client-facing 503s.
    		MaxRetries:         &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		MaxRequests:        &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		MaxConnections:     &wrapperspb.UInt32Value{Value: math.MaxUint32},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. pkg/bootstrap/instance_test.go

    			if err != nil {
    				t.Error("Error modifying generated file ", err)
    				return
    			}
    
    			// re-read generated file with the changes having been made
    			read, err = os.ReadFile(fn)
    			if err != nil {
    				t.Error("Error reading generated file ", err)
    				return
    			}
    
    			goldenFile := "testdata/" + c.base + "_golden.json"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. pkg/scheduler/scheduler.go

    	// We need to start scheduleOne loop in a dedicated goroutine,
    	// because scheduleOne function hangs on getting the next item
    	// from the SchedulingQueue.
    	// If there are no new pods to schedule, it will be hanging there
    	// and if done in this goroutine it will be blocking closing
    	// SchedulingQueue, in effect causing a deadlock on shutdown.
    	go wait.UntilWithContext(ctx, sched.ScheduleOne, 0)
    
    	<-ctx.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. go.work.sum

    cloud.google.com/go/firestore v1.12.0 h1:aeEA/N7DW7+l2u5jtkO8I0qv0D95YwjggD8kUHrTHO4=
    cloud.google.com/go/functions v1.15.1 h1:LtAyqvO1TFmNLcROzHZhV0agEJfBi+zfMZsF4RT/a7U=
    cloud.google.com/go/gaming v1.10.1/go.mod h1:XQQvtfP8Rb9Rxnxm5wFVpAp9zCQkJi2bLIb7iHGwB3s=
    cloud.google.com/go/gkebackup v1.3.0 h1:lgyrpdhtJKV7l1GM15YFt+OCyHMxsQZuSydyNmS0Pxo=
    cloud.google.com/go/gkeconnect v0.8.1 h1:a1ckRvVznnuvDWESM2zZDzSVFvggeBaVY5+BVB8tbT0=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_executor.go

    	// MarkVolumeMountAsUncertain marks state of volume mount for the pod uncertain
    	MarkVolumeMountAsUncertain(markVolumeOpts MarkVolumeOpts) error
    
    	// Marks the specified volume as having been globally mounted.
    	MarkDeviceAsMounted(volumeName v1.UniqueVolumeName, devicePath, deviceMountPath, seLinuxMountContext string) error
    
    	// MarkDeviceAsUncertain marks device state in global mount path as uncertain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    For any non-trivial change, we need to be able to answer these questions:
    
    * Why is this change done? What's the use case?
    * For user facing features, what will the API look like?
    * What test cases should it have? What could go wrong?
    * How will it roughly be implemented? We'll happily provide code pointers to save you time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. cmd/bucket-targets.go

    			}
    			sys.updateBandwidthLimit(bucket, tgt.Arn, tgt.BandwidthLimit)
    		}
    
    		if !tgts.Empty() {
    			sys.targetsMap[bucket] = tgts.Targets
    		}
    	}
    }
    
    // create minio-go clients for buckets having remote targets
    func (sys *BucketTargetSys) set(bucket BucketInfo, meta BucketMetadata) {
    	cfg := meta.bucketTargetConfig
    	if cfg == nil || cfg.Empty() {
    		return
    	}
    	sys.Lock()
    	defer sys.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top