Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 187 for IsSkip (0.11 sec)

  1. src/runtime/mgcscavenge.go

    	gen := s.gen
    	min := chunkIdx(s.minHeapIdx.Load())
    	start := chunkIndex(searchAddr)
    	// N.B. We'll never map the 0'th chunk, so minHeapIdx ensures this loop overflow.
    	for i := start; i >= min; i-- {
    		// Skip over chunks.
    		if !s.chunks[i].load().shouldScavenge(gen, force) {
    			continue
    		}
    		// We're still scavenging this chunk.
    		if i == start {
    			return i, chunkPageIndex(searchAddr)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. cmd/object-api-multipart_test.go

    )
    
    // Wrapper for calling NewMultipartUpload tests for both Erasure multiple disks and single node setup.
    func TestObjectNewMultipartUpload(t *testing.T) {
    	if runtime.GOOS == globalWindowsOSName {
    		t.Skip()
    	}
    	ExecObjectLayerTest(t, testObjectNewMultipartUpload)
    }
    
    // Tests validate creation of new multipart upload instance.
    func testObjectNewMultipartUpload(obj ObjectLayer, instanceType string, t TestErrHandler) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		if statusSubresourceEnabled {
    			v := reflect.ValueOf(schema).Elem()
    			for i := 0; i < v.NumField(); i++ {
    				// skip zero values
    				if value := v.Field(i).Interface(); reflect.DeepEqual(value, reflect.Zero(reflect.TypeOf(value)).Interface()) {
    					continue
    				}
    
    				fieldName := v.Type().Field(i).Name
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: during the preflight check "CreateJob" of "kubeadm upgrade", check if there are no nodes where a Pod can schedule. If there are none, show a warning and skip this preflight check. This can happen in single node clusters where the only node was drained. ([#124503](https://github.com/kubernetes/kubernetes/pull/124503), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    		return c.flushpool(p, 1, 0)
    	} else if p.Link == nil {
    		return c.flushpool(p, 2, 0)
    	}
    	return false
    }
    
    func (c *ctxt5) flushpool(p *obj.Prog, skip int, force int) bool {
    	if c.blitrl != nil {
    		if skip != 0 {
    			if false && skip == 1 {
    				fmt.Printf("note: flush literal pool at %x: len=%d ref=%x\n", uint64(p.Pc+4), c.pool.size, c.pool.start)
    			}
    			q := c.newprog()
    			q.As = AB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    // from "start" through "start+s.elemsize".
    // Specifically, the first bit of t.GCData corresponds to the word at "start",
    // the second to the word after "start", and so on up to t.PtrBytes. At t.PtrBytes,
    // we skip to "start+t.Size_" and begin again from there. This process is
    // repeated until we hit "start+s.elemsize".
    // This tiling algorithm supports array data, since the type always refers to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    		defer f.Close()
    		if *dynlinker {
    			// Emit the cgo_dynamic_linker line.
    			if sec := f.Section(".interp"); sec != nil {
    				if data, err := sec.Data(); err == nil && len(data) > 1 {
    					// skip trailing \0 in data
    					fmt.Fprintf(stdout, "//go:cgo_dynamic_linker %q\n", string(data[:len(data)-1]))
    				}
    			}
    		}
    		sym := elfImportedSymbols(f)
    		for _, s := range sym {
    			targ := s.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    (isset .ObjectMeta.Annotations `traffic.sidecar.istio.io/kubevirtInterfaces`) -}} - "-k" - "{{ index .ObjectMeta.Annotations `traffic.sidecar.istio.io/kubevirtInterfaces` }}" {{ end -}} {{ if .Values.istio_cni.enabled -}} - "--run-validation" - "--skip-rule-apply" {{ end -}} imagePullPolicy: "{{ valueOrDefault .Values.global.imagePullPolicy `Always` }}" {{- if .ProxyConfig.ProxyMetadata }} env: {{- range $key, $value := .ProxyConfig.ProxyMetadata }} - name: {{ $key }} value: "{{ $value }}" {{- end...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier_test.go

    						Mtls: &v1beta1.PeerAuthentication_MutualTLS{
    							Mode: v1beta1.PeerAuthentication_MutualTLS_DISABLE,
    						},
    					},
    				},
    			},
    			expected: nil,
    		},
    		{
    			name: "beta-mtls-skip-trust-domain",
    			peerIn: []*config.Config{
    				{
    					Spec: &v1beta1.PeerAuthentication{
    						Mtls: &v1beta1.PeerAuthentication_MutualTLS{
    							Mode: v1beta1.PeerAuthentication_MutualTLS_STRICT,
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        if (!IsTPUOp(op) || llvm::isa<TF::TPUReplicatedInputOp>(op)) continue;
        for (OpOperand& input_value : op->getOpOperands())
          // TODO(bfontain): Error check here, this line should never be false,
          // since we skip the TF::TPUReplicatedInputOp case.
          if (IsTPUOp(input_value.get().getDefiningOp()) &&
              !backward_pass_ops.contains(input_value.get().getDefiningOp()))
            values_to_add_nodes.insert(input_value.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top