Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 135 for committed (0.25 sec)

  1. CHANGELOG/CHANGELOG-1.8.md

    * Resources outside the `*kubernetes.io` namespace are integers and cannot be over-committed. ([#48922](https://github.com/kubernetes/kubernetes/pull/48922), [@ConnorDoyle](https://github.com/ConnorDoyle))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Feb 20 15:45:02 GMT 2024
    - 312.2K bytes
    - Viewed (1)
  2. cmd/xl-storage-format-v2_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// check for omitted fields
    	zb0001Len := uint32(1)
    	var zb0001Mask uint8 /* 1 bits */
    	_ = zb0001Mask
    	if z.ObjectV2 == nil {
    		zb0001Len--
    		zb0001Mask |= 0x1
    	}
    	// variable map header, size zb0001Len
    	o = append(o, 0x80|uint8(zb0001Len))
    	if zb0001Len == 0 {
    		return
    	}
    	if (zb0001Mask & 0x1) == 0 { // if not omitted
    		// string "V2Obj"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 19 16:43:43 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. docs/features/https.md

           */
          private fun trustedCertificatesInputStream(): InputStream {
            ... // Full source omitted. See sample.
          }
    
          private fun trustManagerForCertificates(inputStream: InputStream): X509TrustManager {
            ... // Full source omitted. See sample.
          }
        ```
    === ":material-language-java: Java"
        ```java
          private final OkHttpClient client;
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Dec 24 00:16:30 GMT 2022
    - 10.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilderSpec.java

        @Override
        public void parse(CacheBuilderSpec spec, String key, @Nullable String value) {
          if (isNullOrEmpty(value)) {
            throw new IllegalArgumentException("value of key " + key + " omitted");
          }
          try {
            parseInteger(spec, Integer.parseInt(value));
          } catch (NumberFormatException e) {
            throw new IllegalArgumentException(
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Aug 22 14:27:44 GMT 2022
    - 18.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

        @Override
        public void parse(CacheBuilderSpec spec, String key, @Nullable String value) {
          if (isNullOrEmpty(value)) {
            throw new IllegalArgumentException("value of key " + key + " omitted");
          }
          try {
            parseInteger(spec, Integer.parseInt(value));
          } catch (NumberFormatException e) {
            throw new IllegalArgumentException(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 22 14:27:44 GMT 2022
    - 18.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            }
    
            if (!included) {
                if (Objects.equals(winnerVersion, node.getArtifact().getVersion())) {
                    details.add("omitted for duplicate");
                } else {
                    details.add("omitted for conflict with " + winnerVersion);
                }
            }
    
            StringBuilder buffer = new StringBuilder();
            if (included) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            }
    
            if (!included) {
                if (Objects.equals(winnerVersion, node.getArtifact().getVersion())) {
                    details.add("omitted for duplicate");
                } else {
                    details.add("omitted for conflict with " + winnerVersion);
                }
            }
    
            StringBuilder buffer = new StringBuilder();
            if (included) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  8. .cm/plugins/filters/isEnabledAutomation/index.js

     *     <li>and the automation is enabled for all community PR authors via the presence of 'community' in the appropriate map entry above.</li>
     * </ul>
     *
     * or
     *
     * <ul>
     *     <li>Someone has commented `@bot-gitstream run <NAME_OF_AUTOMATION>` (the file name, without the `.cm` suffix) on the PR.</li>
     * </ul>
     *
     * @param {string} automationName - The automation name (*.cm file name containing the automation) to check.
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

        void startProcessChildren(Artifact artifact);
    
        void endProcessChildren(Artifact artifact);
    
        void includeArtifact(Artifact artifact);
    
        void omitForNearer(Artifact omitted, Artifact kept);
    
        void updateScope(Artifact artifact, String scope);
    
        @Deprecated
        void manageArtifact(Artifact artifact, Artifact replacement);
    
        // TODO Use the following two instead of manageArtifact
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/pom.xml

                <phase>validate</phase>
                <goals>
                  <goal>parent-2</goal>
                </goals>
              </execution>
              <execution>
                <!-- NOTE: <id> deliberately omitted to use default value -->
                <phase>validate</phase>
                <goals>
                  <goal>parent-default</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
Back to top