Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for elts (0.04 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    	// is the global endpoint for the cluster, which then loadbalances the requests to each individual API server. This
    	// configuration object lets you customize what IP/DNS name and port the local API server advertises it's accessible
    	// on. By default, kubeadm tries to auto-detect the IP of the default interface and use that, but in case that process
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// is the global endpoint for the cluster, which then loadbalances the requests to each individual API server. This
    	// configuration object lets you customize what IP/DNS name and port the local API server advertises it's accessible
    	// on. By default, kubeadm tries to auto-detect the IP of the default interface and use that, but in case that process
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/SetsTest.java

        Set<SomeEnum> units = Stream.<SomeEnum>empty().collect(Sets.toImmutableEnumSet());
        assertThat(units).isEmpty();
      }
    
      public void testToImmutableEnumSetReused() {
        // The method call lets us capture the accumulator as an A and invoke the callbacks manually
        genericTestToImmutableEnumSetReused(Sets.<SomeEnum>toImmutableEnumSet());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  4. pkg/volume/plugins.go

    // VolumeHost interface)
    
    // KubeletVolumeHost is a Kubelet specific interface that plugins can use to access the kubelet.
    type KubeletVolumeHost interface {
    	// SetKubeletError lets plugins set an error on the Kubelet runtime status
    	// that will cause the Kubelet to post NotReady status with the error message provided
    	SetKubeletError(err error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/rangefunc/rewrite.go

    	f(func() {
    		defer print("A")
    	})
    
    because the deferred code will run at the end of the iteration, not
    the end of the containing function. To fix that, the runtime provides
    a special hook that lets us obtain a defer "token" representing the
    outer function and then use it in a later defer to attach the deferred
    code to that outer function.
    
    Normally,
    
    	defer print("A")
    
    compiles to
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    The extra functions here are stubs to satisfy the references in the C
    code generated for gcc. The build process links this stub, along with
    _cgo_export.c and *.cgo2.c, into a dynamic executable and then lets
    cgo examine the executable. Cgo records the list of shared library
    references and resolved names and writes them into a new file
    _cgo_import.go, which looks like:
    
    	//go:cgo_dynamic_linker "/lib64/ld-linux-x86-64.so.2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	os.Setenv("GOCACHE", pathf("%s/pkg/obj/go-build", goroot))
    
    	// Disable GOEXPERIMENT when building toolchain1 and
    	// go_bootstrap. We don't need any experiments for the
    	// bootstrap toolchain, and this lets us avoid duplicating the
    	// GOEXPERIMENT-related build logic from cmd/go here. If the
    	// bootstrap toolchain is < Go 1.17, it will ignore this
    	// anyway since GOEXPERIMENT is baked in; otherwise it will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/net/http/request.go

    // are of type ProtocolError.
    type ProtocolError struct {
    	ErrorString string
    }
    
    func (pe *ProtocolError) Error() string { return pe.ErrorString }
    
    // Is lets http.ErrNotSupported match errors.ErrUnsupported.
    func (pe *ProtocolError) Is(err error) bool {
    	return pe == ErrNotSupported && err == errors.ErrUnsupported
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    		// this is created by code in this file.
    		if t.Name == "unsafe.Pointer" {
    			return ast.NewIdent("_cgo_unsafe.Pointer")
    		}
    	case *ast.ArrayType:
    		t1 := p.rewriteUnsafe(t.Elt)
    		if t1 != t.Elt {
    			r := *t
    			r.Elt = t1
    			return &r
    		}
    	case *ast.StructType:
    		changed := false
    		fields := *t.Fields
    		fields.List = nil
    		for _, f := range t.Fields.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    			throw("work.nwait was > work.nproc")
    		}
    
    		systemstack(func() {
    			// Mark our goroutine preemptible so its stack
    			// can be scanned. This lets two mark workers
    			// scan each other (otherwise, they would
    			// deadlock). We must not modify anything on
    			// the G stack. However, stack shrinking is
    			// disabled for mark workers, so it is safe to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top