Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for zipsum (0.13 sec)

  1. src/compress/lzw/writer_test.go

    				t.Run(fmt.Sprintf("LitWidth %d", litWidth), func(t *testing.T) {
    					var data []byte
    					if litWidth == 6 {
    						data = []byte{1, 2, 3}
    					} else {
    						data = []byte(`lorem ipsum dolor sit amet`)
    					}
    					var buf bytes.Buffer
    					w := NewWriter(&buf, order, litWidth)
    					if _, err := w.Write(data); err != nil {
    						t.Errorf("write: %v: %v", string(data), err)
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 11:00:47 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.cc

              function_name.contains("and_bias")) {
            spec->biases_params[2] = {{0, 1},
                                      quant::GetUniformQuantizedTypeForBias};
          }
        } else if (function_name.contains("einsum")) {
          spec->coeff_op_quant_dim[1] = -1;
          if (function_name.contains("with_bias")) {
            spec->biases_params[2] = {{0, 1},
                                      quant::GetUniformQuantizedTypeForBias};
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_update_sum_readonly.txt

    # Delete downloaded .zip files.
    go clean -modcache
    
    # Check for updates.
    go list -m -u rsc.io/breaker
    stdout '^rsc.io/breaker v1.0.0 \[v2.0.0\+incompatible\]$'
    
    # We should not have downloaded zips.
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v1.0.0.zip
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v2.0.0+incompatible.zip
    
    -- go.mod --
    module m
    
    go 1.16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 27 22:01:54 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

         */
        public void setEntryCompression(ZipEntryCompression entryCompression) {
            this.entryCompression = entryCompression;
        }
    
        /**
         * Enables building zips with more than 65535 files or bigger than 4GB.
         *
         * @see #isZip64()
         */
        public void setZip64(boolean allowZip64) {
            this.allowZip64 = allowZip64;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

    import org.gradle.integtests.fixtures.archives.TestReproducibleArchives
    import spock.lang.Ignore
    
    @TestReproducibleArchives
    class ArchivesContinuousIntegrationTest extends AbstractContinuousIntegrationTest {
        def "creating zips"() {
            given:
            def sourceDir = file("src")
            def subDir = sourceDir.file("subdir")
            def outputFile = file("build/distributions/zip.zip")
            def unpackDir = file("build/unpack")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/IntegrationTestBuildContext.java

        }
    
        public GradleVersion getVersion() {
            return GradleVersion.current();
        }
    
        /**
         * The timestamped version used in the docs and the bin and all zips. This should be different to {@link GradleVersion#getVersion()}.
         */
        public GradleVersion getDistZipVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/verify.go

    	if len(args) != 0 {
    		// NOTE(rsc): Could take a module pattern.
    		base.Fatalf("go: verify takes no arguments")
    	}
    	modload.ForceUseModules = true
    	modload.RootMode = modload.NeedRoot
    
    	// Only verify up to GOMAXPROCS zips at once.
    	type token struct{}
    	sem := make(chan token, runtime.GOMAXPROCS(0))
    
    	mg, err := modload.LoadModGraph(ctx, "")
    	if err != nil {
    		base.Fatal(err)
    	}
    	mods := mg.BuildList()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_sum_ambiguous.txt

    go list -m all
    stdout '^example.com/ambiguous/a v1.0.0$'
    stdout '^example.com/ambiguous/a/b v0.0.0-empty$'
    
    # If two modules could provide a package, but only one does,
    # 'go mod tidy' should retain sums for both zips.
    go mod tidy
    grep '^example.com/ambiguous/a v1.0.0 h1:' go.sum
    grep '^example.com/ambiguous/a/b v0.0.0-empty h1:' go.sum
    
    # 'go mod download' should also add sums.
    cp go.sum.buildlist-only go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:37:31 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                    }
    
                repositories {
                    ivy {
                        // Url of Android Studio archive
                        url = uri("https://redirector.gvt1.com/edgedl/android/studio/ide-zips")
                        patternLayout {
                            artifact("[revision]/[artifact]-[revision]-[ext]")
                        }
                        metadataSources { artifact() }
                        content {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

    // NEXT ID: 7
    message UnitWiseQuantizationSpec {
      // Quantization unit granularity.
      // NEXT ID: 4
      message QuantizationUnit {
        // Type of the op, ex: Conv2D, MatMul, Einsum... The node_name field can
        // be omitted if it is intended to match all nodes with this type.
        string op_type = 1;
        // Name of the node. This field accepts re2 regex format. If the node name
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top