Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for REFLECT (0.3 sec)

  1. CHANGELOG/CHANGELOG-1.12.md

    * A new `TaintNodesByCondition` admission plugin taints newly created Node objects as "not ready", to fix a race condition that could cause pods to be scheduled on new nodes before their taints were updated to accurately reflect their reported conditions. This admission plugin is enabled by default if the `TaintNodesByCondition` feature is enabled. ([#73097](https://github.com/kubernetes/kubernetes/pull/73097), [@bsalamat](https://github.com/bsalamat))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    // errno returns v's underlying uintptr, else 0.
    //
    // TODO: remove this helper function once http2 can use build
    // tags. See comment in isClosedConnError.
    func http2errno(v error) uintptr {
    	if rv := reflect.ValueOf(v); rv.Kind() == reflect.Uintptr {
    		return uintptr(rv.Uint())
    	}
    	return 0
    }
    
    // isClosedConnError reports whether err is an error from use of a closed
    // network connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	wrapperspb "google.golang.org/protobuf/types/known/wrapperspb"
    	v1 "k8s.io/api/core/v1"
    	v11 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	reflect "reflect"
    	sync "sync"
    )
    
    const (
    	// Verify that this generated code is sufficiently up-to-date.
    	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    	// Verify that runtime/protoimpl is sufficiently up-to-date.
    	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.13.md

    * A new `TaintNodesByCondition` admission plugin taints newly created Node objects as "not ready", to fix a race condition that could cause pods to be scheduled on new nodes before their taints were updated to accurately reflect their reported conditions. This admission plugin is enabled by default if the `TaintNodesByCondition` feature is enabled. ([#73097](https://github.com/kubernetes/kubernetes/pull/73097), [@bsalamat](https://github.com/bsalamat))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package validation
    
    import (
    	"context"
    	"math"
    	"math/rand"
    	"reflect"
    	"strings"
    	"testing"
    
    	"github.com/google/cel-go/cel"
    
    	"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    	apiextensionsfuzzer "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/fuzzer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	}
    
    	// Left is not ssa-able. Compute its address.
    	addr := s.addr(left)
    	if ir.IsReflectHeaderDataField(left) {
    		// Package unsafe's documentation says storing pointers into
    		// reflect.SliceHeader and reflect.StringHeader's Data fields
    		// is valid, even though they have type uintptr (#19168).
    		// Mark it pointer type to signal the writebarrier pass to
    		// insert a write barrier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package iptables
    
    import (
    	"bytes"
    	"fmt"
    	"net"
    	"reflect"
    	"regexp"
    	stdruntime "runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/lithammer/dedent"
    	"github.com/stretchr/testify/assert"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - Fixed missing delete events on informer re-lists to ensure all delete events were correctly emitted and using the latest known object state, so that all event handlers and stores always reflect the actual apiserver state as best as possible ([#115620](https://github.com/kubernetes/kubernetes/pull/115620), [@odinuge](https://github.com/odinuge))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.14.md

    - A new `TaintNodesByCondition` admission plugin taints newly created Node objects as "not ready", to fix a race condition that could cause pods to be scheduled on new nodes before their taints were updated to accurately reflect their reported conditions. This admission plugin is enabled by default if the `TaintNodesByCondition` feature is enabled. ([#73097](https://github.com/kubernetes/kubernetes/pull/73097), [@bsalamat](https://github.com/bsalamat))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  10. doc/go_spec.html

    	</li>
    </ul>
    </li>
    
    <li>
    To allow complex statements to occupy a single line, a semicolon
    may be omitted before a closing <code>")"</code> or <code>"}"</code>.
    </li>
    </ol>
    
    <p>
    To reflect idiomatic use, code examples in this document elide semicolons
    using these rules.
    </p>
    
    
    <h3 id="Identifiers">Identifiers</h3>
    
    <p>
    Identifiers name program entities such as variables and types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top