Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,555 for specifiedFn (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/quota/v1/interfaces.go

    	GroupResource() schema.GroupResource
    	// Handles determines if quota could be impacted by the specified attribute.
    	// If true, admission control must perform quota processing for the operation, otherwise it is safe to ignore quota.
    	Handles(operation admission.Attributes) bool
    	// Matches returns true if the specified quota matches the input item
    	Matches(resourceQuota *corev1.ResourceQuota, item runtime.Object) (bool, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 30 21:02:09 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. releasenotes/notes/41912.yaml

    area: installation
    releaseNotes:
      - |
        **Fixed** `istioctl install` failed when specifying `--revision default`.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 13 20:21:07 UTC 2022
    - 296 bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Table.java

      /**
       * Associates the specified value with the specified keys. If the table already contained a
       * mapping for those keys, the old value is replaced with the specified value.
       *
       * @param rowKey row key that the value should be associated with
       * @param columnKey column key that the value should be associated with
       * @param value value to be associated with the specified keys
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/LittleEndianDataOutputStream.java

      }
    
      /**
       * Writes a char as specified by {@link DataOutputStream#writeChar(int)}, except using
       * little-endian byte order.
       *
       * @throws IOException if an I/O error occurs
       */
      @Override
      public void writeChar(int v) throws IOException {
        writeShort(v);
      }
    
      /**
       * Writes a {@code String} as specified by {@link DataOutputStream#writeChars(String)}, except
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginContainer.java

     * particular project.</p>
     *
     * <p>Plugins can be specified using either an id or type. The id of a plugin is specified using a
     * META-INF/gradle-plugins/${id}.properties classpath resource.</p>
     */
    public interface PluginContainer extends PluginCollection<Plugin> {
        /**
         * Has the same behavior as {@link #apply(Class)} except that the plugin is specified via its id. Not all
         * plugins have an id.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

        /**
         * Verifies that the specified plugin's prerequisites are met.
         *
         * @param pluginDescriptor The descriptor of the plugin to check, must not be {@code null}.
         * @since 4.0.0
         */
        void checkPrerequisites(PluginDescriptor pluginDescriptor) throws PluginIncompatibleException;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/request_deadline.go

    	})
    }
    
    // parseTimeout parses the given HTTP request URL and extracts the timeout query parameter
    // value if specified by the user.
    // If a timeout is not specified the function returns false and err is set to nil
    // If the value specified is malformed then the function returns false and err is set
    func parseTimeout(req *http.Request) (time.Duration, bool, error) {
    	value := req.URL.Query().Get("timeout")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 21:12:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/v2beta2/defaults_test.go

    			},
    			expectedStabilization: nil,
    			expectedSelectPolicy:  string(autoscalingv2.MaxPolicySelect),
    		},
    		{
    			annotation:                   "All parameters are specified",
    			rateDownPods:                 1,
    			rateDownPodsPeriodSeconds:    2,
    			rateDownPercent:              3,
    			rateDownPercentPeriodSeconds: 4,
    			stabilizationSeconds:         utilpointer.Int32(25),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

        /**
         * Returns the distribution installed in the specified directory.
         */
        public Distribution getDistribution(File gradleHomeDir) {
            return new InstalledDistribution(gradleHomeDir, "Gradle installation '" + gradleHomeDir + "'",
                "Gradle installation directory '" + gradleHomeDir + "'");
        }
    
        /**
         * Returns the distribution for the specified gradle version.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RangeSet.java

       * range set and the specified range. This is equivalent to calling {@code
       * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty.
       *
       * @since 20.0
       */
      boolean intersects(Range<C> otherRange);
    
      /**
       * Returns {@code true} if there exists a member range in this range set which {@linkplain
       * Range#encloses encloses} the specified range.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top