Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for sumAsm (0.42 sec)

  1. src/cmd/go/testdata/script/modfile_flag.txt

    go list -m -f '{{.GoMod}}'
    stdout '^go.alt.mod$'
    
    # go mod edit should operate on the alternate file
    go mod edit -require rsc.io/quote@v1.5.2
    grep rsc.io/quote go.alt.mod
    
    # 'go list -m' should add sums to the alternate go.sum.
    go list -m -mod=mod all
    grep '^rsc.io/quote v1.5.2/go.mod ' go.alt.sum
    ! grep '^rsc.io/quote v1.5.2 ' go.alt.sum
    
    # other 'go mod' commands should work. 'go mod vendor' is tested later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestCountLoggerTest.groovy

            when:
            logger.afterSuite(rootSuite, result())
    
            then:
            1 * progressLogger.completed()
        }
    
        def "remembers whether any root suite reported failure and sums up total tests"() {
            when:
            logger.beforeSuite(rootSuite)
            logger.beforeTest(test())
            logger.afterTest(test(), result())
            logger.afterSuite(rootSuite, result())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/monitoring/monitoring.go

    type Metric interface {
    	// Increment records a value of 1 for the current measure. For Sums,
    	// this is equivalent to adding 1 to the current value. For Gauges,
    	// this is equivalent to setting the value to 1. For Distributions,
    	// this is equivalent to making an observation of value 1.
    	Increment()
    
    	// Decrement records a value of -1 for the current measure. For Sums,
    	// this is equivalent to subtracting -1 to the current value. For Gauges,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

            if (downloadMonitor != null) {
                wagon.addTransferListener(downloadMonitor);
            }
    
            Map<String, ChecksumObserver> checksums = new HashMap<>(2);
    
            Map<String, String> sums = new HashMap<>(2);
    
            // TODO configure these on the repository
            for (int i = 0; i < CHECKSUM_IDS.length; i++) {
                checksums.put(CHECKSUM_IDS[i], addChecksumObserver(wagon, CHECKSUM_ALGORITHMS[i]));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. tensorflow/c/eager/gradient_checker.cc

    void GetDims(const TF_Tensor* t, int64_t* out_dims) {
      int num_dims = TF_NumDims(t);
      for (int i = 0; i < num_dims; i++) {
        out_dims[i] = TF_Dim(t, i);
      }
    }
    
    // Runs model as is if output is a scalar,
    // else sums the output tensor before returning.
    Status RunAndMaybeSum(AbstractContext* ctx, Model forward,
                          absl::Span<AbstractTensorHandle* const> inputs,
                          absl::Span<AbstractTensorHandle*> outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package zip_sum_test tests that the module zip files produced by modfetch
    // have consistent content sums. Ideally the zip files themselves are also
    // stable over time, though this is not strictly necessary.
    //
    // This test loads a table from testdata/zip_sums.csv. The table has columns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/download.go

    		// module cache. In modules that aren't at go 1.17 or higher, it may fetch
    		// modules that aren't needed to build packages in the main module. This is
    		// usually not intended, so don't save sums for downloaded modules
    		// (golang.org/issue/45332). We do still fix inconsistencies in go.mod
    		// though.
    		//
    		// TODO(#64008): In the future, report an error if go.mod or go.sum need to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    	// so in order to ensure that the build list itself is reproducible,
    	// we need sums for every go.mod in the graph (regardless of whether
    	// that version is selected).
    	keep := make(map[module.Version]bool)
    
    	// Add entries for modules in the build list with paths that are prefixes of
    	// paths of loaded packages. We need to retain sums for all of these modules —
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/gradients.cc

      // gradients for the node associated with `src`.
      Status BackpropAlongEdge(const Output& dst_grad, const Output& src);
    
      // Adds a node to the graph (returned in `grad`) that sums the in-bound
      // gradients to `src` (if there are more than one).
      Status SumGradients(const Output& src, Output* grad);
    
      // Returns true if `opname` is registered in `registry_` with no gradient
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/import.go

    // if a module contains a package, but we don't have a sum for its .zip file.
    // We might need sums for multiple modules to verify the package is unique.
    //
    // TODO(#43653): consolidate multiple errors of this type into a single error
    // that suggests a 'go get' command for root packages that transitively import
    // packages from modules with missing sums. load.CheckPackageErrors would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top