Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 266 for tid1 (0.06 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tensorflow/tf_to_quant.cc

        Value min = tf_op.getMin(), max = tf_op.getMax();
        DenseFPElementsAttr min_value, max_value;
        if (auto id1 = dyn_cast_or_null<TF::IdentityOp>(min.getDefiningOp())) {
          id1.replaceAllUsesWith(id1.getInput());
          min = tf_op.getMin();
          rewriter.eraseOp(id1);
        }
        if (auto id2 = dyn_cast_or_null<TF::IdentityOp>(max.getDefiningOp())) {
          id2.replaceAllUsesWith(id2.getInput());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tests/fuzz/oss_fuzz_build.sh

    # This is a small hack to install this dependency, since it is not used anywhere,
    # and Go would therefore remove it from go.mod once we run "go mod tidy && go mod vendor".
    printf "package main\nimport _ \"github.com/AdamKorcz/go-118-fuzz-build/testing\"\n" > register.go
    go mod tidy
    
    # Find all native fuzzers and compile them
    # shellcheck disable=SC2016
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    					roots = append(roots, m)
    					pathIsRoot[m.Path] = true
    				}
    			}
    		}
    
    		if len(roots) > len(tidy.rootModules) {
    			gover.ModSort(roots)
    			tidy = newRequirements(pruned, roots, tidy.direct)
    		}
    	}
    
    	roots = tidy.rootModules
    	_, err := tidy.Graph(ctx)
    	if err != nil {
    		return nil, err
    	}
    
    	// We try to avoid adding explicit requirements for test-only dependencies of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. hack/update-internal-modules.sh

      exit 1
    fi
    
    kube::golang::setup_env
    
    for mod in "${MODULES[@]}"; do
      echo "=== tidying go.mod/go.sum in ${mod}"
      go -C "${KUBE_ROOT}/${mod}" mod edit -fmt
      go -C "${KUBE_ROOT}/${mod}" mod tidy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_sum_readonly.txt

    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    
    # go.sum should not have been written.
    cmp go.sum go.sum.buildlistonly
    
    # Control: when sums are present, 'go list' downloads .zip files.
    cp go.sum.tidy go.sum
    go list .
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    
    -- go.mod --
    module m
    
    go 1.15
    
    require rsc.io/quote v1.5.2
    -- use.go --
    package use
    
    import _ "rsc.io/quote"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparerTest.groovy

        def "build operation provides execution plan when queries with all node types"() {
            def ti1 = TestTaskIdentities.create("t1", Task, Stub(ProjectInternal) {
                projectPath(_) >> { args -> Path.path(":" + args[0]) }
            })
            def t = Stub(LocalTaskNode) {
                getTask() >> Stub(TaskInternal) {
                    getTaskIdentity() >> ti1
                }
            }
            List<Node> nodes = [t]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. bin/update_deps.sh

    }
    
    make update-common
    
    export GO111MODULE=on
    go get -u "istio.io/api@${UPDATE_BRANCH}"
    go get -u "istio.io/client-go@${UPDATE_BRANCH}"
    go mod tidy
    
    sed -i "s/^BUILDER_SHA=.*\$/BUILDER_SHA=$(getSha release-builder)/" prow/release-commit.sh
    chmod +x prow/release-commit.sh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/claiminfo_test.go

    					"test-plugin1": {
    						{
    							Name:  "cdi.k8s.io/test-plugin1_claim-uid1",
    							Value: "vendor.com/device=device1",
    						},
    						{
    							Name:  "cdi.k8s.io/test-plugin1_claim-uid2",
    							Value: "vendor.com/device=device2",
    						},
    					},
    					"test-plugin2": {
    						{
    							Name:  "cdi.k8s.io/test-plugin2_claim-uid1",
    							Value: "vendor.com/device=device1",
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_issue48511.txt

    # versions of the main module, causing dependencies to be
    # spuriously dropping during requirement minimization and
    # leading to an infinite loop.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    go get -u=patch ./...
    cmp go.mod go.mod.want
    
    -- go.mod --
    module example.net/m
    
    go 1.16
    
    replace (
    	example.net/a v0.1.0 => ./a
    	example.net/b v0.1.0 => ./b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 01 15:43:08 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_sumdb.txt

    stderr 'SECURITY ERROR\nThis download does NOT match the one reported by the checksum server.'
    ! go get rsc.io/sampler
    ! go get golang.org/x/text
    
    go mod edit -require rsc.io/quote@v1.5.2
    ! go mod tidy
    stderr 'go: rsc.io/quote@v1.5.2: verifying go.mod: checksum mismatch'
    stderr 'SECURITY ERROR\n'
    
    rm go.sum
    
    # switching to truthful sumdb detects timeline inconsistency
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top