Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,666 for associateBy (0.38 sec)

  1. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	}
    }
    
    // getPod fetches a pod by name or IP address.
    // A pod may be missing (nil) for two reasons:
    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_HTTPIngressPath = map[string]string{
    	"":         "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/ClassLoaderWorkerSpec.java

     * A worker spec providing the requirements of an isolated classpath.
     *
     * @since 5.6
     */
    public interface ClassLoaderWorkerSpec extends WorkerSpec {
        /**
         * Gets the classpath associated with the worker.
         *
         * @return the classpath associated with the worker
         */
        ConfigurableFileCollection getClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/net/http/header.go

    // It appends to any existing values associated with key.
    // The key is case insensitive; it is canonicalized by
    // [CanonicalHeaderKey].
    func (h Header) Add(key, value string) {
    	textproto.MIMEHeader(h).Add(key, value)
    }
    
    // Set sets the header entries associated with key to the
    // single element value. It replaces any existing values
    // associated with key. The key is case insensitive; it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/metrics/interfaces.go

    	// GetRawMetric gets the given metric (and an associated oldest timestamp)
    	// for all pods matching the specified selector in the given namespace
    	GetRawMetric(metricName string, namespace string, selector labels.Selector, metricSelector labels.Selector) (PodMetricsInfo, time.Time, error)
    
    	// GetObjectMetric gets the given metric (and an associated timestamp) for the given
    	// object in the given namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/util/intstr/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1beta1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function.h

      //  function_def - The function_def associated with the created
      //                 TFSignatureDefFunction. TFSignatureDefFunction will
      //                 register this function_def with `ctx` on creation, and
      //                 de-register it on destruction. function_def must be
      //                 non-null, but otherwise has no lifetime requirements.
      //  captures - The captured TensorHandles associated with this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/BiMap.java

       * discarded and not returned.
       *
       * @param key the key with which the specified value is to be associated
       * @param value the value to be associated with the specified key
       * @return the value that was previously associated with the key, or {@code null} if there was no
       *     previous entry. (If the bimap contains null values, then {@code forcePut}, like {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/ForkingWorkerSpec.java

        /**
         * Executes the provided action against the {@link JavaForkOptions} object associated with this builder.
         *
         * @param forkOptionsAction - An action to configure the {@link JavaForkOptions} for this builder
         */
        void forkOptions(Action<? super JavaForkOptions> forkOptionsAction);
    
        /**
         * Returns the {@link JavaForkOptions} object associated with this builder.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseClasspathEntry.java

    /**
     * An element that can have classpath attributes.
     *
     * @since 2.14
     */
    public interface EclipseClasspathEntry {
    
        /**
         * Returns the classpath attributes associated with this classpath entry.
         *
         * @return The classpath attributes.
         * @throws UnsupportedMethodException For Gradle versions older than 2.14, where this method is not supported.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top