Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 996 for Preferred (0.21 sec)

  1. pkg/scheduler/apis/config/types_pluginargs.go

    	// matching hard affinity to the incoming pod.
    	HardPodAffinityWeight int32
    
    	// IgnorePreferredTermsOfExistingPods configures the scheduler to ignore existing pods' preferred affinity
    	// rules when scoring candidate nodes, unless the incoming pod has inter-pod affinities.
    	IgnorePreferredTermsOfExistingPods bool
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. samples/kind-lb/setupkind.sh

      echo "    -i|--ip-family     - ip family to be supported, default is ipv4 only. Value should be ipv4, ipv6, or dual"
      echo "    --ipv6gw           - set ipv6 as the gateway, necessary for dual-stack IPv6-preferred clusters"
      echo "    -h|--help          - print the usage of this script"
    }
    
    # Setup default values
    CLUSTERNAME="cluster1"
    K8SRELEASE=""
    IPSPACE=255
    IPFAMILY="ipv4"
    MODE="sidecar"
    NUMNODES=""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. pkg/test/echo/cmd/client/main.go

    For Kubernetes, this can be run from a source pod via "kubectl exec" with the desired flags.
    In general, Echo's gRPC interface (ForwardEcho) should be preferred. This client is only needed in cases
    where the network configuration doesn't support gRPC to the source pod.'
    `,
    		Args:              cobra.ExactArgs(1),
    		PersistentPreRunE: configureLogging,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. tests/util/leak/check.go

    // cause all future tests to fail. However, it is still possible another test influences the result when t.Parallel is used.
    // Where possible, CheckMain is preferred.
    func Check(t TestingTB) {
    	existingRaw, err := interestingGoroutines()
    	if err != nil {
    		t.Errorf("failed to fetch pre-test goroutines: %v", err)
    		return
    	}
    	existing := map[uint64]struct{}{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 10:22:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    // Marks a node for XLA compilation. The attribute value indicates the
    // compilation device type.
    inline constexpr llvm::StringRef kCompileDeviceTypeAttr =
        "_xla_compile_device_type";
    // The attribute value speicifes the preferred outlined function name in
    // ClusterOutliningPass.
    inline constexpr llvm::StringRef kClusterOutlinedFunctionNameAttr =
        "_cluster_outlined_function_name";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                        if (consumerValue == null) {
                            // Default to preferred
                            if (candidateValues.contains("preferred")) {
                                details.closestMatch("preferred")
                            }
                            // Otherwise, use the selected value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/JdkFutureAdapters.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Utilities necessary for working with libraries that supply plain {@link Future} instances. Note
     * that, whenever possible, it is strongly preferred to modify those libraries to return {@code
     * ListenableFuture} directly.
     *
     * <p>For interoperability between {@code ListenableFuture} and <b>{@code CompletableFuture}</b>,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. hack/lib/init.sh

    source "${KUBE_ROOT}/hack/lib/etcd.sh"
    
    # list of all available group versions.  This should be used when generated code
    # or when starting an API server that you want to have everything.
    # most preferred version for a group should appear first
    KUBE_AVAILABLE_GROUP_VERSIONS="${KUBE_AVAILABLE_GROUP_VERSIONS:-\
    v1 \
    admissionregistration.k8s.io/v1 \
    admissionregistration.k8s.io/v1alpha1 \
    admissionregistration.k8s.io/v1beta1 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// ResourceVersion provides a resource version constraint to apply to the get operation
    	// as a "not older than" constraint: the result contains data at least as new as the provided
    	// ResourceVersion. The newest available data is preferred, but any data not older than this
    	// ResourceVersion may be served.
    	ResourceVersion string
    }
    
    // ListOptions provides the options that may be provided for storage list operations.
    type ListOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    Plugins are used to extend Gradle. They are also used to modularize and reuse project configurations.
    
    Plugins can be applied using the `PluginDependenciesSpec` plugins script block.
    
    The plugins block is preferred:
    
    [source]
    ----
    plugins {
        id("org.jetbrains.kotlin.jvm") version "1.9.0"
        id("application")
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top