Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 205 for decisions (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    						authz,
    					),
    				)
    			}
    
    			for _, validationResult := range validationResults {
    				for i, decision := range validationResult.Decisions {
    					switch decision.Action {
    					case ActionAdmit:
    						if decision.Evaluation == EvalError {
    							celmetrics.Metrics.ObserveAdmissionWithError(ctx, decision.Elapsed, definition.Name, binding.Name, "active")
    						}
    					case ActionDeny:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder.go

    		Requested: requestedQty.Value(),
    		Capacity:  capacityQty.Value(),
    	}
    }
    
    // PodVolumes holds pod's volumes information used in volume scheduling.
    type PodVolumes struct {
    	// StaticBindings are binding decisions for PVCs which can be bound to
    	// pre-provisioned static PVs.
    	StaticBindings []*BindingInfo
    	// DynamicProvisions are PVCs that require dynamic provisioning
    	DynamicProvisions []*v1.PersistentVolumeClaim
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. docs/fr/docs/features.md

    ### Support d'éditeurs
    
    Tout le framework a été conçu pour être facile et intuitif d'utilisation, toutes les décisions de design ont été testées sur de nombreux éditeurs avant même de commencer le développement final afin d'assurer la meilleure expérience de développement possible.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1/types.go

    	// pods of a disrupted application might not get a chance to become healthy.
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// Additional policies may be added in the future.
    	// Clients making eviction decisions should disallow eviction of unhealthy pods
    	// if they encounter an unrecognized policy in this field.
    	//
    	// This field is beta-level. The eviction API uses this field when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    ----
    
    "Isolating" processors have the following additional limitations:
    
    * They must make all decisions (code generation, validation messages) for an annotated type based on information reachable from its AST.
        This means you can analyze the types' super-class, method return types, annotations etc., even transitively.
        But you cannot make decisions based on unrelated elements in the RoundEnvironment.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/cache.go

    		logger.Error(nil, "Pod updated on a different node than previously added to", "podKey", key, "pod", klog.KObj(oldPod))
    		logger.Error(nil, "scheduler cache is corrupted and can badly affect scheduling decisions")
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    	return cache.updatePod(logger, oldPod, newPod)
    }
    
    func (cache *cacheImpl) RemovePod(logger klog.Logger, pod *v1.Pod) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/pgo_inl_test.go

    	}
    	defer s.Close()
    
    	d, err := os.Create(dst)
    	if err != nil {
    		return err
    	}
    	defer d.Close()
    
    	_, err = io.Copy(d, s)
    	return err
    }
    
    // TestPGOHash tests that PGO optimization decisions can be selected by pgohash.
    func TestPGOHash(t *testing.T) {
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	const pkg = "example.com/pgo/inline"
    
    	wd, err := os.Getwd()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/productpage.py

        incoming_headers = [
            # All applications should propagate x-request-id. This header is
            # included in access log statements and is used for consistent trace
            # sampling and log sampling decisions in Istio.
            'x-request-id',
    
            # Lightstep tracing header. Propagate this if you use lightstep tracing
            # in Istio (see
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  9. pkg/scheduler/apis/config/types.go

    	// the type we converted from. This is done in cmd/kube-scheduler in two
    	// places: (1) when loading config from a file, (2) generating the default
    	// config. Based on the versioned type set in this field, we make decisions;
    	// for example (1) during validation to check for usage of removed plugins,
    	// (2) writing config to a file, (3) initialising the scheduler.
    	metav1.TypeMeta
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. cmd/bucket-replication-utils.go

    		}
    	}
    	return b.String()
    }
    
    // ResyncDecision is a struct representing a map with target's individual resync decisions
    type ResyncDecision struct {
    	targets map[string]ResyncTargetDecision
    }
    
    // Empty returns true if no targets with resync decision present
    func (r ResyncDecision) Empty() bool {
    	return r.targets == nil
    }
    
    func (r ResyncDecision) mustResync() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top