Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 742 for comprises (0.13 sec)

  1. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyPacker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import io.airlift.compress.snappy.SnappyFramedInputStream;
    import io.airlift.compress.snappy.SnappyFramedOutputStream;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyCommonsPacker.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.apache.commons.compress.compressors.snappy.FramedSnappyCompressorInputStream;
    import org.apache.commons.compress.compressors.snappy.FramedSnappyCompressorOutputStream;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tf_to_hlo_compiler.h

    #include "tensorflow/core/framework/op_kernel.h"
    
    namespace tensorflow {
    
    class TfToHloCompiler {
     public:
      TfToHloCompiler() = default;
      virtual ~TfToHloCompiler() = default;
    
      // Compiles a Tensorflow `function` to an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result`.
      virtual Status Compile(const XlaCompiler::CompileOptions& options,
                             const NameAttrList& function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. cmd/config-migrate.go

    	switch cfg.Version {
    	case "29":
    		// V29 -> V30
    		cfg.Compression.Enabled = false
    		cfg.Compression.Extensions = strings.Split(compress.DefaultExtensions, config.ValueSeparator)
    		cfg.Compression.MimeTypes = strings.Split(compress.DefaultMimeTypes, config.ValueSeparator)
    	case "30":
    		// V30 -> V31
    		cfg.OpenID = openid.Config{}
    		cfg.Policy.OPA = opa.Args{
    			URL:       &xnet.URL{},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipCopyAction.java

     * limitations under the License.
     */
    package org.gradle.api.internal.file.archive;
    
    import org.apache.commons.compress.archivers.zip.UnixStat;
    import org.apache.commons.compress.archivers.zip.Zip64RequiredException;
    import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
    import org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream;
    import org.gradle.api.GradleException;
    import org.gradle.api.file.FileCopyDetails;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:16:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.h

    class TfGraphToHloCompiler : public TfToHloCompiler {
     public:
      TfGraphToHloCompiler() = delete;
    
      explicit TfGraphToHloCompiler(const XlaCompiler::Options& options)
          : xla_compiler_(options) {}
    
      // Compiles a Tensorflow `function` into an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result` by calling
      // XlaCompiler::CompileFunction.
      Status Compile(const XlaCompiler::CompileOptions& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

                hasSubprojectAccessors(":")
            }
            generatedCode['RootProjectDependency'].with {
                noSubAccessors()
            }
    
            and:
            compiles()
        }
    
        def "generates accessors for flat multiproject"() {
            when:
            generateSources project("root") {
                project("core")
                project("lib")
                project("utils")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. internal/config/compress/help.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package compress
    
    import "github.com/minio/minio/internal/config"
    
    // Help template for compress feature.
    var (
    	defaultHelpPostfix = func(key string) string {
    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	Help = config.HelpKVS{
    		config.HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/TarTestFixture.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.archive
    
    import org.apache.commons.compress.archivers.tar.TarArchiveEntry
    import org.apache.commons.compress.archivers.tar.TarArchiveInputStream
    import org.apache.commons.io.IOUtils
    import org.gradle.test.fixtures.file.TestFile
    
    import java.nio.charset.Charset
    import java.util.zip.GZIPInputStream
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/compress/zlib/writer.go

    // license that can be found in the LICENSE file.
    
    package zlib
    
    import (
    	"compress/flate"
    	"encoding/binary"
    	"fmt"
    	"hash"
    	"hash/adler32"
    	"io"
    )
    
    // These constants are copied from the flate package, so that code that imports
    // "compress/zlib" does not also have to import "compress/flate".
    const (
    	NoCompression      = flate.NoCompression
    	BestSpeed          = flate.BestSpeed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 18:51:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top