Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 96 for realm (0.14 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    // special cases, it performs no deduction or arithmetic. While there
    // are known decision procedures for this, the ad hoc approach taken
    // by the facts table is effective for real code while remaining very
    // efficient.
    type factsTable struct {
    	// unsat is true if facts contains a contradiction.
    	//
    	// Note that the factsTable logic is incomplete, so if unsat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters_test.go

    				},
    			},
    		},
    		{
    			desc: "allocatable memory does not double-count hugepages reservations",
    			node: &v1.Node{
    				Status: v1.NodeStatus{
    					Capacity: v1.ResourceList{
    						// it's impossible on any real system to reserve 1 byte,
    						// but we just need to test that the setter does the math
    						v1.ResourceHugePagesPrefix + "test": *resource.NewQuantity(1, resource.BinarySI),
    					},
    				},
    			},
    			maxPods: 110,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			},
    			want: []framework.NodeScore{
    				{Name: "node-a", Score: 100},
    				{Name: "node-b", Score: 0},
    			},
    		},
    		{
    			// This test is artificial. In the real world, API Server would fail a pod's creation
    			// when non-default minDomains is specified along with SchedulingAnyway.
    			name: "minDomains has no effect when ScheduleAnyway",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  4. cmd/xl-storage_test.go

    	err := os.WriteFile(dir2, []byte("hello"), 0o777)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if isDirEmpty(dir2, true) {
    		t.Error("expected false for a file, got true")
    	}
    
    	// Should give true for a real empty directory.
    	dir3 := slashpath.Join(tmp, "empty")
    	err = os.Mkdir(dir3, 0o777)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if !isDirEmpty(dir3, true) {
    		t.Error("expected true for empty dir, got false")
    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. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		if err != nil {
    			// createPodSandbox can return an error from CNI, CSI,
    			// or CRI if the Pod has been deleted while the POD is
    			// being created. If the pod has been deleted then it's
    			// not a real error.
    			//
    			// SyncPod can still be running when we get here, which
    			// means the PodWorker has not acked the deletion.
    			if m.podStateProvider.IsPodTerminationRequested(pod.UID) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Defines runtime configuration of components, including Istiod and istio-agent behavior.
      // See https://istio.io/docs/reference/config/istio.mesh.v1alpha1/ for all available options.
      // TODO can this import the real mesh config API?
      google.protobuf.Value meshConfig = 36;
    
      // Configuration for the base component.
      BaseConfig base = 37;
    
      // Configuration for istiod-remote.
      IstiodRemoteConfig istiodRemote = 38;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    So why should you bother?
    
    Dependency verification is about **trust** in what you get and what you ship.
    
    Without dependency verification it's easy for an attacker to compromise your supply chain.
    There are many real world examples of tools compromised by adding a malicious dependency.
    Dependency verification is meant to protect yourself from those attacks, by forcing you to ensure that the artifacts you include in your build are the ones that you expect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    func newTestBinder(t *testing.T, ctx context.Context) *testEnv {
    	client := &fake.Clientset{}
    	logger := klog.FromContext(ctx)
    	reactor := pvtesting.NewVolumeReactor(ctx, client, nil, nil, nil)
    	// TODO refactor all tests to use real watch mechanism, see #72327
    	client.AddWatchReactor("*", func(action k8stesting.Action) (handled bool, ret watch.Interface, err error) {
    		gvr := action.GetResource()
    		ns := action.GetNamespace()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    			// linking internally for notes that we want to be included
    			// in a loadable segment (e.g. the abihash note) but not for
    			// notes that we do not want to be mapped (e.g. the package
    			// list note). The real fix is probably to define new values
    			// for Symbol.Type corresponding to mapped and unmapped notes
    			// and handle them in dodata().
    			Errorf(nil, "sh.Type == SHT_NOTE in elfshbits when linking internally")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    func (kl *simpleFakeKubelet) SyncTerminatedPod(ctx context.Context, pod *v1.Pod, podStatus *kubecontainer.PodStatus) error {
    	return nil
    }
    
    // TestFakePodWorkers verifies that the fakePodWorkers behaves the same way as the real podWorkers
    // for their invocation of the syncPodFn.
    func TestFakePodWorkers(t *testing.T) {
    	fakeRecorder := &record.FakeRecorder{}
    	fakeRuntime := &containertest.FakeRuntime{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top