Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for pselect (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      DenseIntElementsAttr cond_attr;
      if (!matchPattern(op.getCond(), m_Constant(&cond_attr))) return failure();
    
      // Cond value must be a scalar.
      if (cond_attr.getNumElements() != 1) return failure();
    
      // Select a branch function.
      bool cond = cond_attr.getSplatValue<BoolAttr>().getValue();
      FlatSymbolRefAttr func =
          cond ? op.getThenBranchAttr() : op.getElseBranchAttr();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    	// match: (MOVBUreg x:(Select0 (LoweredAtomicLoad8 _ _)))
    	// result: (MOVDreg x)
    	for {
    		x := v_0
    		if x.Op != OpSelect0 {
    			break
    		}
    		x_0 := x.Args[0]
    		if x_0.Op != OpRISCV64LoweredAtomicLoad8 {
    			break
    		}
    		v.reset(OpRISCV64MOVDreg)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBUreg x:(Select0 (LoweredAtomicCas32 _ _ _ _)))
    	// result: (MOVDreg x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		}
    		return
    	}
    	defer s3Select.Close()
    
    	if err = s3Select.Open(objectRSC); err != nil {
    		if serr, ok := err.(s3select.SelectError); ok {
    			encodedErrorResponse := encodeResponse(APIErrorResponse{
    				Code:       serr.ErrorCode(),
    				Message:    serr.ErrorMessage(),
    				BucketName: bucket,
    				Key:        object,
    				Resource:   r.URL.Path,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        details == 'Trying to write an output to a read-only location which is for Gradle internal use only'
                        solutions == ['Select a different output location']
                        additionalData.asMap == [
                            'typeName': 'org.gradle.api.DefaultTask',
                            'propertyName': 'output',
                        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	par := cfg.BuildP
    	if cfg.BuildN {
    		par = 1
    	}
    	for i := 0; i < par; i++ {
    		wg.Add(1)
    		go func() {
    			ctx := trace.StartGoroutine(ctx)
    			defer wg.Done()
    			for {
    				select {
    				case _, ok := <-b.readySema:
    					if !ok {
    						return
    					}
    					// Receiving a value from b.readySema entitles
    					// us to take from the ready queue.
    					b.exec.Lock()
    					a := b.ready.pop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    		timeoutTime := time.Now().Add(2 * time.Second)
    		for now := time.Now(); timeoutTime.After(now); now = time.Now() {
    			sleepUntil := timeoutTime.Sub(now)
    			select {
    			case <-tc.processed:
    				// drain the chan of any sent events to keep it from filling before the timeout
    			case <-time.After(sleepUntil):
    				// timeout reached, ready to verifyResults
    			}
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. src/net/http/server.go

    		}
    		return interval
    	}
    
    	timer := time.NewTimer(nextPollInterval())
    	defer timer.Stop()
    	for {
    		if srv.closeIdleConns() {
    			return lnerr
    		}
    		select {
    		case <-ctx.Done():
    			return ctx.Err()
    		case <-timer.C:
    			timer.Reset(nextPollInterval())
    		}
    	}
    }
    
    // RegisterOnShutdown registers a function to call on [Server.Shutdown].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        rewriter.replaceOpWithNewOp<TFL::ReshapeOp>(op, op.getOperand(),
                                                    op.getOutputShape());
      }
    };
    
    // Rewrites quantized stablehlo.select to tfl.select_v2.
    // TODO: b/322428814 - Add StableHLO quantizer integration tests for ODML.
    class RewriteQuantizedSelectOp : public OpRewritePattern<stablehlo::SelectOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    // loadPackageData and loadImport are always safe to call.
    func (pre *preload) preloadMatches(ctx context.Context, opts PackageOpts, matches []*search.Match) {
    	for _, m := range matches {
    		for _, pkg := range m.Pkgs {
    			select {
    			case <-pre.cancel:
    				return
    			case pre.sema <- struct{}{}:
    				go func(pkg string) {
    					mode := 0 // don't use vendoring or module import resolution
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__policy__v1_openapi.json

                  }
                ],
                "description": "Label query over pods whose evictions are managed by the disruption budget. A null selector will match no pods, while an empty ({}) selector will select all pods within the namespace.",
                "x-kubernetes-patch-strategy": "replace"
              },
              "unhealthyPodEvictionPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top