Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 437 for decisions (0.59 sec)

  1. staging/src/k8s.io/api/policy/v1beta1/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: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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 (0)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      // will be inserted when created.
      Operation* const insert_point;
    
      // The set of islands that are to be merged together.
      SmallVector<IslandOp> islands;
    };
    
    // This structure contains all of the merge decisions for islands within a
    // graph. We compute which islands to merge first, so that we don't need to
    // recursively mutate the IR (resulting in quadratic behavior when moving
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. pkg/model/proxy.go

    var ALPNH2Only = []string{"h2"}
    
    // ALPNInMeshH2 advertises that Proxy is going to use HTTP/2 when talking to the in-mesh cluster.
    // The custom "istio" value indicates in-mesh traffic and it's going to be used for routing decisions.
    // Once Envoy supports client-side ALPN negotiation, this should be {"istio", "h2", "http/1.1"}.
    var ALPNInMeshH2 = []string{"istio", "h2"}
    
    func StringToExactMatch(in []string) []*matcher.StringMatcher {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top