Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for checkTrees (0.16 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    			return msgFuture, nil
    		}
    	}
    }
    
    // checkTrees checks that older (from olderNote) is contained in newer (from newerNote).
    // If an error occurs, such as malformed data or a network problem, checkTrees returns that error.
    // If on the other hand checkTrees finds evidence of misbehavior, it prepares a detailed
    // message and calls log.Fatal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                    dependencies {
                        'default'('com.acme.external:external:1.0')
                    }
                }
            """
            resolve.prepare {
                config('_compileFree', 'checkFree')
                config('_compilePaid', 'checkPaid')
            }
    
            file('includedBuild/build.gradle') << """
                enum SomeEnum { free, paid }
                interface Thing extends Named { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	}
    	return append(p, th), hashes
    }
    
    // CheckTree verifies that p is a valid proof that the tree of size t with hash th
    // contains as a prefix the tree of size n with hash h.
    func CheckTree(p TreeProof, t int64, th Hash, n int64, h Hash) error {
    	if t < 1 || n < 1 || n > t {
    		return fmt.Errorf("tlog: invalid inputs in CheckTree")
    	}
    	h2, th2, err := runTreeProof(p, 0, t, n, h)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-quant.mlir

      // CHECK: %[[CONVERT_1:.*]] = mhlo.bitcast_convert %[[QUANT0]] : (tensor<?x!quant.uniform<i8:f32, 1.000000e+00:3>>) -> tensor<?xi8>
      // CHECK: mhlo.while()
      // CHECK: cond
      // CHECK: %[[CHECK_RES:.*]] = chlo.broadcast_compare
      // CHECK: mhlo.return %[[CHECK_RES]] : tensor<i1>
      // CHECK: %[[CONVERT_2:.*]] = mhlo.bitcast_convert %[[CONVERT_1]] : (tensor<?xi8>) -> tensor<?x!quant.uniform<i8:f32, 1.000000e+00:3>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 01:25:29 UTC 2024
    - 37.3K bytes
    - Viewed (0)
Back to top