Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for proc (0.05 sec)

  1. pkg/kube/inject/testdata/inputs/hello.yaml.1.template.gen.yaml

            image: "{{ .ProxyImage }}"
          {{- end }}
            {{ if $nativeSidecar }}restartPolicy: Always{{end}}
            ports:
            - containerPort: 15090
              protocol: TCP
              name: http-envoy-prom
            args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello.yaml.12.template.gen.yaml

            image: "{{ .ProxyImage }}"
          {{- end }}
            {{ if $nativeSidecar }}restartPolicy: Always{{end}}
            ports:
            - containerPort: 15090
              protocol: TCP
              name: http-envoy-prom
            args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello.yaml.13.template.gen.yaml

            image: "{{ .ProxyImage }}"
          {{- end }}
            {{ if $nativeSidecar }}restartPolicy: Always{{end}}
            ports:
            - containerPort: 15090
              protocol: TCP
              name: http-envoy-prom
            args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/kubevirtInterfaces.yaml.9.template.gen.yaml

            image: "{{ .ProxyImage }}"
          {{- end }}
            {{ if $nativeSidecar }}restartPolicy: Always{{end}}
            ports:
            - containerPort: 15090
              protocol: TCP
              name: http-envoy-prom
            args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: %[[SHAPE:.*]] = "tf.Shape"(%arg0) : (tensor<1x?x2x3xf32>) -> tensor<4xi32>
      // CHECK: %[[PROD:.*]] = "tf.Prod"(%[[SHAPE]], %[[CONSTANT]]) <{keep_dims = false}> : (tensor<4xi32>, tensor<i32>) -> tensor<i32>
      // CHECK: return %[[PROD]]
    }
    
    // CHECK-LABEL: size_to_prod_shape_i64
    func.func @size_to_prod_shape_i64(%arg0 : tensor<1x?x2x3xf32>) -> tensor<i64> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/asm.go

    func (c *ctxt0) isUnsafePoint(p *obj.Prog) bool {
    	// If p explicitly uses REGTMP, it's unsafe to preempt, because the
    	// preemption sequence clobbers REGTMP.
    	return p.From.Reg == REGTMP || p.To.Reg == REGTMP || p.Reg == REGTMP
    }
    
    // isRestartable returns whether p is a multi-instruction sequence that,
    // if preempted, can be restarted.
    func (c *ctxt0) isRestartable(p *obj.Prog) bool {
    	if c.isUnsafePoint(p) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    func (p *parser) binaryExpr(x Expr, prec int) Expr {
    	// don't trace binaryExpr - only leads to overly nested trace output
    
    	if x == nil {
    		x = p.unaryExpr()
    	}
    	for (p.tok == _Operator || p.tok == _Star) && p.prec > prec {
    		t := new(Operation)
    		t.pos = p.pos()
    		t.Op = p.op
    		tprec := p.prec
    		p.next()
    		t.X = x
    		t.Y = p.binaryExpr(nil, tprec)
    		x = t
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    						err := retry.Until(func() bool {
    							stc.Logf("sending call from %q to %q", deployName(localSrc), localDst.Config().Service)
    							localSrc.CallOrFail(stc, opt)
    							reqs, err := prom.QuerySum(localSrc.Config().Cluster, query)
    							if err != nil {
    								stc.Logf("could not query for traffic from %q to %q: %v", deployName(localSrc), localDst.Config().Service, err)
    								return false
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    		if x.val.Kind() == constant.Unknown {
    			// nothing to do (and don't cause an error below in the overflow check)
    			return
    		}
    		var prec uint
    		if isUnsigned(x.typ) {
    			prec = uint(check.conf.sizeof(x.typ) * 8)
    		}
    		x.val = constant.UnaryOp(op, x.val, prec)
    		x.expr = e
    		check.overflow(x, x.Pos())
    		return
    	}
    
    	x.mode = value
    	// x.typ remains unchanged
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/sync/atomic/atomic_test.go

    		hammerStoreLoadInt64, hammerStoreLoadUint64,
    		hammerStoreLoadInt64Method, hammerStoreLoadUint64Method,
    	}
    	n := int(1e6)
    	if testing.Short() {
    		n = int(1e4)
    	}
    	const procs = 8
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(procs))
    	// Disable the GC because hammerStoreLoadPointer invokes
    	// write barriers on values that aren't real pointers.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
Back to top