Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for nextB (1.16 sec)

  1. src/net/http/h2_bundle.go

    		if n.prev == nil {
    			parent.kids = n.next
    		} else {
    			n.prev.next = n.next
    		}
    		if n.next != nil {
    			n.next.prev = n.prev
    		}
    	}
    	// Link to new parent.
    	// If parent=nil, remove n from the tree.
    	// Always insert at the head of parent.kids (this is assumed by walkReadyInOrder).
    	n.parent = parent
    	if parent == nil {
    		n.next = nil
    		n.prev = nil
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		// Emit control flow instructions for block
    		var next *ssa.Block
    		if i < len(f.Blocks)-1 && base.Flag.N == 0 {
    			// If -N, leave next==nil so every block with successors
    			// ends in a JMP (except call blocks - plive doesn't like
    			// select{send,recv} followed by a JMP call).  Helps keep
    			// line numbers for otherwise empty blocks.
    			next = f.Blocks[i+1]
    		}
    		x := s.pp.Next
    		s.SetPos(b.Pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Data         [7]byte
    }
    
    type DmTargetSpec struct {
    	Sector_start uint64
    	Length       uint64
    	Status       int32
    	Next         uint32
    	Target_type  [16]byte
    }
    
    type DmTargetDeps struct {
    	Count uint32
    	_     uint32
    }
    
    type DmTargetVersions struct {
    	Next    uint32
    	Version [3]uint32
    }
    
    type DmTargetMsg struct {
    	Sector uint64
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

              GetI64ElementsAttr(begin_indices, &rewriter),
              GetI64ElementsAttr(end_indices, &rewriter),
              GetI64ElementsAttr(strides, &rewriter)));
          // Prepare the begin indice for the next slice.
          begin_indices[dim_index] = end_indices[dim_index];
        }
    
        rewriter.replaceOp(op, slices);
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Fix a 1.28 regression in scheduler: a pod with concurrent events could incorrectly get moved to the unschedulable queue where it could got stuck until the next periodic purging after 5 minutes if there was no other event for it. ([#120445](https://github.com/kubernetes/kubernetes/pull/120445), [@pohly](https://github.com/pohly)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
    	IpFamilyPolicy string `protobuf:"bytes,30,opt,name=ipFamilyPolicy,proto3" json:"ipFamilyPolicy,omitempty"` // Next available 31.
    }
    
    func (x *EgressGatewayConfig) Reset() {
    	*x = EgressGatewayConfig{}
    	if protoimpl.UnsafeEnabled {
    		mi := &file_pkg_apis_istio_v1alpha1_values_types_proto_msgTypes[11]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    if their volume source is of CSI type or they have a migrated annotation, when they are deleted, the PersistentVolume controller won't change their phase to the Failed state. With this patch, the external provisioner can remove the finalizer in the next reconcile loop. Unfortunately, if a previously existing PV has the Failed state, this patch won't take effect. Users are required to remove the finalizer manually. ([#122030](https://github.com/kubernetes/kubernetes/pull/122030), [@carlory](https:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    	if !allowEmpty && len(*effect) == 0 {
    		return field.ErrorList{field.Required(fldPath, "")}
    	}
    
    	allErrors := field.ErrorList{}
    	switch *effect {
    	// TODO: Replace next line with subsequent commented-out line when implement TaintEffectNoScheduleNoAdmit.
    	case core.TaintEffectNoSchedule, core.TaintEffectPreferNoSchedule, core.TaintEffectNoExecute:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top