Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 259 for nextch (0.12 sec)

  1. 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)
  2. 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)
  3. src/fmt/scan.go

    			if i+w == len(format) {
    				s.errorString("missing verb: % at end of format string")
    			}
    			// %% acts like a real percent
    			nextc, _ := utf8.DecodeRuneInString(format[i+w:]) // will not match % if string is empty
    			if nextc != '%' {
    				return
    			}
    			i += w // skip the first %
    		}
    
    		// Literals.
    		inputc := s.mustReadRune()
    		if fmtc != inputc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	// pvcLister is the shared PVC lister used to fetch and store PVC
    	// objects from the API server. It is shared with other controllers and
    	// therefore the PVC objects in its store should be treated as immutable.
    	pvcLister  corelisters.PersistentVolumeClaimLister
    	pvcsSynced kcache.InformerSynced
    
    	// pvLister is the shared PV lister used to fetch and store PV objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. pilot/pkg/security/authn/policy_applier.go

    		// cluster name, generate the jwt filter config using remote Jwks.
    		// If failed to parse the cluster name, only fallback to let istiod to fetch the jwksUri when
    		// remoteJwksMode is Hybrid.
    		if features.JwksFetchMode != jwt.Istiod && jwtRule.JwksUri != "" {
    			jwksInfo, err := security.ParseJwksURI(jwtRule.JwksUri)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/internal/obj/ppc64/anames.go

    	"DIVW",
    	"DIVWCC",
    	"DIVWVCC",
    	"DIVWV",
    	"DIVWU",
    	"DIVWUCC",
    	"DIVWUVCC",
    	"DIVWUV",
    	"MODUD",
    	"MODUW",
    	"MODSD",
    	"MODSW",
    	"EQV",
    	"EQVCC",
    	"EXTSB",
    	"EXTSBCC",
    	"EXTSH",
    	"EXTSHCC",
    	"FABS",
    	"FABSCC",
    	"FADD",
    	"FADDCC",
    	"FADDS",
    	"FADDSCC",
    	"FCMPO",
    	"FCMPU",
    	"FCTIW",
    	"FCTIWCC",
    	"FCTIWZ",
    	"FCTIWZCC",
    	"FDIV",
    	"FDIVCC",
    	"FDIVS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top