Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 115 for ninit (0.04 sec)

  1. pkg/apis/admissionregistration/v1/zz_generated.conversion.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	admissionregistration "k8s.io/kubernetes/pkg/apis/admissionregistration"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:30 UTC 2024
    - 73.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		case 'J':
    			t := st.demangleType(false)
    			return &Special{Prefix: "java Class for ", Val: t}
    		case 'H':
    			n, _ := st.name()
    			return &Special{Prefix: "TLS init function for ", Val: n}
    		case 'W':
    			n, _ := st.name()
    			return &Special{Prefix: "TLS wrapper function for ", Val: n}
    		default:
    			st.fail("unrecognized special T name code")
    			panic("not reached")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // See: https://bugs.openjdk.java.net/browse/JDK-8074773
        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
        // Log after all static init is finished; if an installed logger uses any Futures methods, it
        // shouldn't break in cases where reflection is missing/broken.
        if (thrownAtomicReferenceFieldUpdaterFailure != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // See: https://bugs.openjdk.java.net/browse/JDK-8074773
        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
        // Log after all static init is finished; if an installed logger uses any Futures methods, it
        // shouldn't break in cases where reflection is missing/broken.
        if (thrownAtomicReferenceFieldUpdaterFailure != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. src/runtime/mgcmark.go

    	if gp.sched.ctxt != nil {
    		scanblock(uintptr(unsafe.Pointer(&gp.sched.ctxt)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
    	}
    
    	// Scan the stack. Accumulate a list of stack objects.
    	var u unwinder
    	for u.init(gp, 0); u.valid(); u.next() {
    		scanframeworker(&u.frame, &state, gcw)
    	}
    
    	// Find additional pointers that point into the stack from the heap.
    	// Currently this includes defers and panics. See also function copystack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    		cref.Name.C = cname(cref.Name.Go)
    	}
    
    	var conv typeConv
    	conv.Init(p.PtrSize, p.IntSize)
    
    	p.loadDefines(f)
    	p.typedefs = map[string]bool{}
    	p.typedefList = nil
    	numTypedefs := -1
    	for len(p.typedefs) > numTypedefs {
    		numTypedefs = len(p.typedefs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy_test.go

    	"net/textproto"
    	"net/url"
    	"os"
    	"reflect"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    )
    
    const fakeHopHeader = "X-Fake-Hop-Header-For-Test"
    
    func init() {
    	inOurTests = true
    	hopHeaders = append(hopHeaders, fakeHopHeader)
    }
    
    func TestReverseProxy(t *testing.T) {
    	const backendResponse = "I am the backend"
    	const backendStatus = 404
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    		conntrackTCPLiberal = true
    		logger.Info("nf_conntrack_tcp_be_liberal set, not installing DROP rules for INVALID packets")
    	}
    
    	if initOnly {
    		logger.Info("System initialized and --init-only specified")
    		return nil, nil
    	}
    
    	// Generate the masquerade mark to use for SNAT rules.
    	masqueradeValue := 1 << uint(masqueradeBit)
    	masqueradeMark := fmt.Sprintf("%#08x", masqueradeValue)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string brokenPodLabelKey = 8;
    
      // The label value to apply to a broken pod when the controller is in labelPods mode.
      string brokenPodLabelValue = 9;
    
      // The name of the init container to use for the repairPods mode.
      string initContainerName = 10;
    }
    
    // Configuration for the resource quotas for the CNI DaemonSet.
    message ResourceQuotas {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    	TypeMem       = newSSA("mem")
    	TypeFlags     = newSSA("flags")
    	TypeVoid      = newSSA("void")
    	TypeInt128    = newSSA("int128")
    	TypeResultMem = newResults([]*Type{TypeMem})
    )
    
    func init() {
    	TypeInt128.width = 16
    	TypeInt128.align = 8
    }
    
    // NewNamed returns a new named type for the given type name. obj should be an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top