Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 278 for Size (0.05 sec)

  1. android/guava/src/com/google/common/collect/Iterators.java

       *     partitions
       * @throws IllegalArgumentException if {@code size} is nonpositive
       */
      public static <T extends @Nullable Object> UnmodifiableIterator<List<T>> partition(
          Iterator<T> iterator, int size) {
        return partitionImpl(iterator, size, false);
      }
    
      /**
       * Divides an iterator into unmodifiable sublists of the given size, padding the final iterator
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Iterators.java

       *     partitions
       * @throws IllegalArgumentException if {@code size} is nonpositive
       */
      public static <T extends @Nullable Object> UnmodifiableIterator<List<T>> partition(
          Iterator<T> iterator, int size) {
        return partitionImpl(iterator, size, false);
      }
    
      /**
       * Divides an iterator into unmodifiable sublists of the given size, padding the final iterator
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    	} else {
    		print("unknown(", state, ")\n")
    	}
    
    	skipped := false
    	size := s.elemsize
    	if s.state.get() == mSpanManual && size == 0 {
    		// We're printing something from a stack frame. We
    		// don't know how big it is, so just show up to an
    		// including off.
    		size = off + goarch.PtrSize
    	}
    	for i := uintptr(0); i < size; i += goarch.PtrSize {
    		// For big objects, just print the beginning (because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2_gen.go

    				if err != nil {
    					err = msgp.WrapError(err, "PartIndices", za0008)
    					return
    				}
    			}
    		case "Size":
    			z.Size, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "Size")
    				return
    			}
    		case "MTime":
    			z.ModTime, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ModTime")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. tests/migrate_test.go

    			Name string `gorm:"size:10"`
    		}
    		UniqueStruct2 struct {
    			Name string `gorm:"size:20"`
    		}
    	)
    	checkField(&UniqueStruct1{}, "name", false, "")
    	checkField(&UniqueStruct2{}, "name", false, "")
    
    	type ( // unique
    		UniqueStruct3 struct {
    			Name string `gorm:"size:30;unique"`
    		}
    		UniqueStruct4 struct {
    			Name string `gorm:"size:40;unique"`
    		}
    	)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            configuration.outgoing.artifacts.size() == 1
            configuration.artifacts.size() == 1
    
            when:
            configuration.artifacts.add(artifact1)
    
            then:
            configuration.outgoing.artifacts.size() == 2
            configuration.artifacts.size() == 2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. cmd/object-api-datatypes_gen.go

    		case "ModTime":
    			z.ModTime, bts, err = msgp.ReadTimeBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "ModTime")
    				return
    			}
    		case "Size":
    			z.Size, bts, err = msgp.ReadInt64Bytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Size")
    				return
    			}
    		case "ActualSize":
    			if msgp.IsNil(bts) {
    				bts, err = msgp.ReadNilBytes(bts)
    				if err != nil {
    					return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  8. src/reflect/type.go

    		comparable = comparable && (ft.Equal != nil)
    
    		offset := align(size, uintptr(ft.Align_))
    		if offset < size {
    			panic("reflect.StructOf: struct size would exceed virtual address space")
    		}
    		if ft.Align_ > typalign {
    			typalign = ft.Align_
    		}
    		size = offset + ft.Size_
    		if size < offset {
    			panic("reflect.StructOf: struct size would exceed virtual address space")
    		}
    		f.Offset = offset
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // connect them to the right input/output positions.
        if (input_permutation.size() != args_by_src_.size()) {
          return errors::InvalidArgument("Input permutation has incorrect size.");
        }
        if (output_permutation.size() != results_.size()) {
          return errors::InvalidArgument("Output permutation has incorrect size.");
        }
        for (auto& arg : args_by_src_) {
          arg.second = input_permutation[arg.second];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output x = ops::MatMul(root.WithOpName("test/x"), a, b);
      Output y = ops::Size(root.WithOpName("test/y"), x);
      Output z = ops::Add(root.WithOpName("test/z"), y, y);
    
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
      TF_ASSERT_OK(root.ToGraph(graph.get()));
    
      // Ensure that the "Size" op can only be clustered with either the producer or
      // consumer by putting them on different devices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top