Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 113 for nextch (0.09 sec)

  1. .github/workflows/ci.yml

    permissions:
      contents: read
    
    jobs:
      test:
        permissions:
          actions: write  # for styfle/cancel-workflow-action to cancel/stop running workflows
          contents: read  # for actions/checkout to fetch code
        name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }} on ${{ matrix.os }}"
        strategy:
          matrix:
            os: [ ubuntu-latest ]
            java: [ 8, 11, 17, 21 ]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_sumdb_golang.txt

    ! stderr sum.golang.org/tile
    ! stderr sum.golang.org/lookup/rsc.io/quote
    
    cmp go.sum saved.sum
    
    
    # Download again.
    # Should use the checksum database to validate new go.sum lines,
    # but not need to fetch any new data from the proxy.
    
    rm go.sum
    
    go list -mod=mod -x -m all  # Add checksums for go.mod files.
    stderr sum.golang.org/tile
    ! stderr github
    ! stderr proxy.golang.org/rsc.io/quote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/switchn.mlir

            "tf_executor.yield"() : () -> ()
          }) : () -> !tf_executor.control
          "tf_executor.fetch"() : () -> ()
        }) : () -> ()
        "func.return"() : () -> ()
      }) {sym_name = "main", function_type = () -> ()} : () -> ()
    }) {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 126 : i32}} : () -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_bridge_v1/end_to_end.mlir

          %control_27 = tf_executor.island(%control_2, %control_26) wraps "tf.NoOp"() : () -> ()
          tf_executor.fetch %control_27 : !tf_executor.control
        }
        func.return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_sum_issue56222.txt

    # dirty either.
    go list -m -u all
    
    env OLDSUMDB=$GOSUMDB
    env GOSUMDB=bad
    go mod tidy
    
    env GOSUMDB=$OLDSUMDB
    
    
    # Regardless of the go version in go.mod, 'go get -t' should fetch
    # enough checksums to run 'go test' on the named package.
    
    rm p
    go mod tidy -go=1.20
    go list -m all
    ! stdout example.com/generics
    go get -t example.com/m2/q@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 13:58:58 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_composite_functions.cc

      // Insert quantization parameters for weights for ops with `weight_only_ptq`
      // attribute.
      pm.addNestedPass<func::FuncOp>(createInsertWeightParamPass());
    
      // PrepareQuantizePass uses SymbolTable to fetch relevant GEMM ops for
      // determining quantization attributes. This requires module-level context.
      pm.addPass(createPrepareQuantizePass(options));
    
      QuantizePassOptions quantize_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    	}, krt.WithName("DefaultAllowFromWaypointPolicies"))
    
    	DefaultPolicy := krt.NewSingleton[model.WorkloadAuthorization](func(ctx krt.HandlerContext) *model.WorkloadAuthorization {
    		if len(krt.Fetch(ctx, PeerAuths)) == 0 {
    			return nil
    		}
    		meshCfg := krt.FetchOne(ctx, MeshConfig.AsCollection())
    		// If there are any PeerAuthentications in our cache, send our static STRICT policy
    		return &model.WorkloadAuthorization{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. ci/official/utilities/code_check_changed_files.bats

        # Only shows Added, Changed, Modified, Renamed, and Type-changed files
        if [[ "$(git rev-parse --abbrev-ref HEAD)" == "pull_branch" ]]; then
            # TF's CI runs 'git fetch origin "pull/PR#/merge:pull_branch"'
            # To get the as-merged branch during the CI tests
            git diff --diff-filter ACMRT --name-only pull_branch^ pull_branch > $BATS_FILE_TMPDIR/changed_files
        else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/ca.go

    	c := t.Clusters().Default()
    	rootCert, err := FetchRootCert(c.Kube())
    	if err != nil {
    		return Cert{}, fmt.Errorf("failed to fetch root cert: %v", err)
    	}
    
    	token, err := GetServiceAccountToken(c.Kube(), "istio-ca", namespace, serviceAccount)
    	if err != nil {
    		return Cert{}, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_update_unrelated_sum.txt

    cp go.mod.orig go.mod
    cp go.sum.orig go.sum
    
    
    # Replace the old version with a directory before upgrading.
    # We didn't need a sum for it before (even though we had one), so we won't
    # fetch a new sum.
    go mod edit -replace rsc.io/quote@v1.0.0=./dummy
    go get example.com/upgrade@v0.0.2
    ! grep '^rsc.io/quote v1.5.2 ' go.sum
    cp go.mod.orig go.mod
    cp go.sum.orig go.sum
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top