Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 384 for ndarray (0.12 sec)

  1. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/ArrayCodecs.kt

    import org.gradle.internal.serialize.EncoderExtensions.writeLengthPrefixedShorts
    
    
    object NonPrimitiveArrayCodec : Codec<Array<*>> {
        override suspend fun WriteContext.encode(value: Array<*>) {
            writeArray(value) { element ->
                write(element)
            }
        }
    
        override suspend fun ReadContext.decode(): Array<*> =
            readArray {
                read()
            }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/JsonWriterScope.java

            jsonWriter.beginArray();
            contents.write();
            endArray();
        }
    
        protected void beginArray(String name) throws IOException {
            jsonWriter.name(name);
            jsonWriter.beginArray();
        }
    
        protected void endArray() throws IOException {
            jsonWriter.endArray();
        }
    
        protected void writeObject(String name, Contents contents) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.fixtures
    
    import com.dd.plist.NSArray
    import com.dd.plist.NSDictionary
    import com.dd.plist.NSObject
    import com.dd.plist.NSString
    import com.dd.plist.PropertyListParser
    import com.google.common.base.MoreObjects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

        private List<Object> readArray(JsonReader reader) {
            List<Object> values = []
            reader.beginArray()
            while (reader.peek() != JsonToken.END_ARRAY) {
                Object value = readAny(reader)
                values.add(value)
            }
            reader.endArray()
            return values
        }
    
        static Map<String, String> normalizeForTests(Map<String, ?> attributes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableCollection.java

      public final Object[] toArray() {
        return toArray(EMPTY_ARRAY);
      }
    
      @CanIgnoreReturnValue
      @Override
      /*
       * This suppression is here for two reasons:
       *
       * 1. b/192354773 in our checker affects toArray declarations.
       *
       * 2. `other[size] = null` is unsound. We could "fix" this by requiring callers to pass in an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. src/go/doc/testdata/issue22856.1.golden

    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    	// 
    	type T struct{}
    
    	// 
    	func New() T
    
    	// 
    	func NewArray() [1]T
    
    	// 
    	func NewPointer() *T
    
    	// 
    	func NewPointerArray() [1]*T
    
    	// 
    	func NewPointerOfPointer() **T
    
    	// 
    	func NewPointerSlice() []*T
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/Types.java

          this.upperBounds = JavaVersion.CURRENT.usedInGenericType(upperBounds);
        }
    
        @Override
        public Type[] getLowerBounds() {
          return toArray(lowerBounds);
        }
    
        @Override
        public Type[] getUpperBounds() {
          return toArray(upperBounds);
        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj instanceof WildcardType) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

        /**
         * Queries whether this object represents an array, generic or otherwise.
         *
         * @return true if this object represents an array.
         * @see #getComponentType()
         */
        public boolean isArray() {
            return type.isGenericArray()
                || (type.isClass() && rawClass().isArray());
        }
    
        /**
         * Returns the component type of the array type this object represents.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/DefaultClassPath.java

                    assert array.length == inserted;
                    return new ImmutableUniqueList<T>(set, array);
                }
    
                private Object[] shrinkArray() {
                    if (array.length == inserted) {
                        return array;
                    }
                    Object[] newArray = new Object[inserted];
                    System.arraycopy(array, 0, newArray, 0, inserted);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. test-site/app/controllers/Suggest.java

                    .startArray("result");
    
                for(String word: response.getWords()) {
                    builder.value(word);
                }
    
                String json = builder.endArray()
                    .endObject()
                    .endArray()
                    .endObject()
                    .endObject().string();
                if(callback != null && callback.length > 0) {
                    json = callback[0] + '(' + json + ')';
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 2.2K bytes
    - Viewed (0)
Back to top