Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tuple (0.15 sec)

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

       *
       * <pre>{@code
       * for (B b0 : sets.get(0)) {
       *   for (B b1 : sets.get(1)) {
       *     ...
       *     ImmutableList<B> tuple = ImmutableList.of(b0, b1, ...);
       *     // operate on tuple
       *   }
       * }
       * }</pre>
       *
       * <p>Note that if any input set is empty, the Cartesian product will also be empty. If no sets at
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 77.2K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    	}
    
    	return buf[8:], major, minor, nil
    }
    
    func isXL2V1Format(buf []byte) bool {
    	_, _, _, err := checkXL2V1(buf)
    	return err == nil
    }
    
    //msgp:tuple xlMetaV2VersionHeader
    type xlMetaV2VersionHeader struct {
    	VersionID [16]byte
    	ModTime   int64
    	Signature [4]byte
    	Type      VersionType
    	Flags     xlFlags
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 16:43:43 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  3. configure.py

      if proc.wait():
        # Errors from find_cuda_config.py were sent to stderr.
        print('Asking for detailed CUDA configuration...\n')
        return False
    
      config = dict(
          tuple(line.decode('ascii').rstrip().split(': ')) for line in proc.stdout)
    
      print('Found CUDA %s in:' % config['cuda_version'])
      print('    %s' % config['cuda_library_dir'])
      print('    %s' % config['cuda_include_dir'])
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        String getCrawlerMetadataNameMapping();
    
        default Tuple3<String, String, String> getCrawlerMetadataNameMapping(final String name) {
            @SuppressWarnings("unchecked")
            Map<String, Tuple3<String, String, String>> params =
                    (Map<String, Tuple3<String, String, String>>) propMap.get(CRAWLER_METADATA_NAME_MAPPING);
            if (params == null) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
Back to top