Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for Gated (0.1 sec)

  1. releasenotes/notes/46719.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 46719
    releaseNotes:
      - |
        **Added** gated flag `ISTIO_ENABLE_IPV4_OUTBOUND_LISTENER_FOR_IPV6_CLUSTERS` to manage an additional outbound listener for IPv6-only clusters to deal with IPv4 NAT outbound traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 03 15:28:21 UTC 2023
    - 414 bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    	p.lock.Lock()
    	defer p.lock.Unlock()
    
    	pInfo := p.newQueuedPodInfo(pod)
    	gated := pInfo.Gated
    	if added, err := p.addToActiveQ(logger, pInfo); !added {
    		return err
    	}
    	if p.unschedulablePods.get(pod) != nil {
    		logger.Error(nil, "Error: pod is already in the unschedulable queue", "pod", klog.KObj(pod))
    		p.unschedulablePods.delete(pod, gated)
    	}
    	// Delete pod from backoffQ if it is backing off
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. pkg/scheduler/metrics/metrics.go

    			StabilityLevel: metrics.STABLE,
    		}, []string{"queue"})
    	Goroutines = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      SchedulerSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. releasenotes/notes/extended-jwt.yaml

    area: security
    releaseNotes:
    - |
      **Improved** request JWT authentication to use the upstream Envoy JWT filter
      instead of the custom Istio Proxy filter. Because the new upstream JWT filter
      capabilities are needed, the feature is gated for the proxies that support
      them. Note that a custom Envoy or Wasm filter that used `istio_authn` dynamic
      metadata key  needs to be updated to use `envoy.filters.http.jwt_authn`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 491 bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	pInfos := makeQueuedPodInfos(queueableNum, "x", queueable, timestamp)
    	// The last 10 Pods are not queueable.
    	gated := makeQueuedPodInfos(total-queueableNum, "y", failme, timestamp)
    	// Manually mark them as gated=true.
    	for _, pInfo := range gated {
    		setQueuedPodInfoGated(pInfo)
    	}
    	pInfos = append(pInfos, gated...)
    	totalWithDelay := 20
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    package versions
    
    // This file contains predicates for working with file versions to
    // decide when a tool should consider a language feature enabled.
    
    // GoVersions that features in x/tools can be gated to.
    const (
    	Go1_18 = "go1.18"
    	Go1_19 = "go1.19"
    	Go1_20 = "go1.20"
    	Go1_21 = "go1.21"
    	Go1_22 = "go1.22"
    )
    
    // Future is an invalid unknown Go version sometime in the future.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/io/pipe.go

    //
    // It is safe to call Read and Write in parallel with each other or with Close.
    // Parallel calls to Read and parallel calls to Write are also safe:
    // the individual calls will be gated sequentially.
    func Pipe() (*PipeReader, *PipeWriter) {
    	pw := &PipeWriter{r: PipeReader{pipe: pipe{
    		wrCh: make(chan []byte),
    		rdCh: make(chan int),
    		done: make(chan struct{}),
    	}}}
    	return &pw.r, pw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/features/features.go

    	WaitForAllControlPlaneComponents: {FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Alpha}},
    }
    
    // Feature represents a feature being gated
    type Feature struct {
    	featuregate.FeatureSpec
    	MinimumVersion     *version.Version
    	HiddenInHelpText   bool
    	DeprecationMessage string
    }
    
    // FeatureList represents a list of feature gates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/types.go

    	UnschedulablePlugins sets.Set[string]
    	// PendingPlugins records the plugin names that the Pod failed with Pending status.
    	PendingPlugins sets.Set[string]
    	// Whether the Pod is scheduling gated (by PreEnqueuePlugins) or not.
    	Gated bool
    }
    
    // DeepCopy returns a deep copy of the QueuedPodInfo object.
    func (pqi *QueuedPodInfo) DeepCopy() *QueuedPodInfo {
    	return &QueuedPodInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. src/io/pipe_test.go

    			if n, err := r.Read(buf[i : i+readSize]); n != readSize || err != nil {
    				t.Errorf("Read() = (%d, %v); want (%d, nil)", n, err, readSize)
    			}
    		}
    
    		// Since each Write is fully gated, if multiple Read calls were needed,
    		// the contents of Write should still appear together in the output.
    		got := string(buf)
    		want := strings.Repeat(input, count)
    		if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top