Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1081 - 1090 of 1,414 for volumes (0.05 sec)

  1. guava/src/com/google/common/reflect/MutableTypeToInstanceMap.java

               * can be used with collections that may contain null. This collection is a collection of
               * non-null Entry objects (Entry objects that might contain null values but are not
               * themselves null), so we can treat it as a plain `Object[]`.
               */
              @SuppressWarnings("nullness")
              Object[] result = standardToArray();
              return result;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

            }
    
            valueSources.add(modelValueSource1);
    
            valueSources.add(new MapBasedValueSource(config.getUserProperties()));
    
            // Overwrite existing values in model properties. Otherwise, it's not possible
            // to define them via command line e.g.: mvn -Drevision=6.5.7 ...
            versionProcessor.overwriteModelProperties(modelProperties, config);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. docs/ru/docs/tutorial/body-multiple-params.md

    Произойдёт проверка составных данных, и создание документации в схеме OpenAPI и автоматических документах.
    
    ## Отдельные значения в теле запроса { #singular-values-in-body }
    
    Точно так же, как `Query` и `Path` используются для определения дополнительных данных для query и path параметров, **FastAPI** предоставляет аналогичный инструмент - `Body`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 11:24:39 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/ClassUtil.java

         * @throws IllegalAccessRuntimeException
         *             If the number of actual and formal parameters differ, if unwrapping of primitive arguments fails,
         *             or if after unwrapping, the parameter values cannot be converted to the corresponding formal parameter types,
         *             or if the constructor is related to an enum type
         * @see Constructor#newInstance(Object[])
         */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/NullPointerTester.java

     * the rest not null -- and the test fails if no expected exception is thrown. {@code
     * NullPointerTester} uses best effort to pick non-null default values for many common JDK and Guava
     * types, and also for interfaces and public classes that have public parameter-less constructors.
     * When the non-null default value for a particular parameter type cannot be provided by {@code
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/query-params-str-validations.md

    ////
    
    Pero que sepas que esto está deprecado y debería actualizarse para usar el nuevo parámetro `pattern`. 🤓
    
    ## Valores por defecto { #default-values }
    
    Puedes, por supuesto, usar valores por defecto diferentes de `None`.
    
    Digamos que quieres declarar el parámetro de query `q` para que tenga un `min_length` de `3`, y para que tenga un valor por defecto de `"fixedquery"`:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  7. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

              MappedRange.Constant(rangeStart, mapping.type)
            }
    
            else -> error("unexpected mapping type: ${mapping.type}")
          }
      }
    
      for (sectionList in result.values) {
        mergeAdjacentDeltaMappedRanges(sectionList)
      }
    
      return result.toMap()
    }
    
    /**
     * Modifies [ranges] to combine any adjacent [MappedRange.InlineDelta] of same size to single entry.
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb1/util/MimeMapTest.java

                assertEquals("image/jpeg", mimeMap.getMimeType("jpg", customDefault));
            }
    
            @ParameterizedTest
            @DisplayName("Should handle various default values")
            @ValueSource(strings = { "text/unknown", "application/x-unknown", "custom/type", "" })
            void testVariousDefaultValues(String defaultValue) throws IOException {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelperTest.java

            assertEquals(
                    accessibilityAfterFirst,
                    accessibilityAfterSecond,
                    "Field accessibility should be consistent across multiple accesses");
    
            // Verify values were set correctly
            assertEquals("value1", bean1.getDirectField());
            assertEquals("value2", bean2.getDirectField());
        }
    
        /**
         * Test bean class for testing property setting.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 12 14:59:46 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbConstants.java

        /**
         * File is marked hidden
         */
        int ATTR_HIDDEN = 0x02;
        /**
         * File is marked a system file
         */
        int ATTR_SYSTEM = 0x04;
        /**
         * File is marked a volume
         */
        int ATTR_VOLUME = 0x08;
        /**
         * File is a directory
         */
        int ATTR_DIRECTORY = 0x10;
    
        /**
         * Files is marked to be archived
         */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
Back to top