Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 225 for goio (0.65 sec)

  1. src/cmd/compile/internal/ssa/stackalloc.go

    					h := f.getHome(id)
    					if h != nil && h.(LocalSlot).N == name.N && h.(LocalSlot).Off == name.Off {
    						// A variable can interfere with itself.
    						// It is rare, but it can happen.
    						s.nSelfInterfere++
    						goto noname
    					}
    				}
    				if f.pass.debug > stackDebug {
    					fmt.Printf("stackalloc %s to %s\n", v, name)
    				}
    				s.nNamedSlot++
    				f.setHome(v, name)
    				continue
    			}
    
    		noname:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. cmd/sftp-server.go

    		if !globalIAMSys.LDAPConfig.Enabled() {
    			return nil, errSFTPLDAPNotEnabled
    		}
    		return processLDAPAuthentication(key, pass, user)
    	}
    
    	user, found = strings.CutSuffix(c.User(), "=svc")
    	if found {
    		goto internalAuth
    	}
    
    	if globalIAMSys.LDAPConfig.Enabled() {
    		perms, _ := processLDAPAuthentication(key, pass, user)
    		if perms != nil {
    			return perms, nil
    		}
    	}
    
    internalAuth:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/runtime/mspanset.go

    		lock(&b.spineLock)
    		// spineLen cannot change until we release the lock,
    		// but may have changed while we were waiting.
    		spineLen = b.spineLen.Load()
    		if top < spineLen {
    			unlock(&b.spineLock)
    			goto retry
    		}
    
    		spine := b.spine.Load()
    		if spineLen == b.spineCap {
    			// Grow the spine.
    			newCap := b.spineCap * 2
    			if newCap == 0 {
    				newCap = spanSetInitSpineCap
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. go.mod

    	github.com/docker/go-units v0.5.0
    	github.com/emicklei/go-restful/v3 v3.11.0
    	github.com/fsnotify/fsnotify v1.7.0
    	github.com/go-logr/logr v1.4.1
    	github.com/godbus/dbus/v5 v5.1.0
    	github.com/gogo/protobuf v1.3.2
    	github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
    	github.com/golang/protobuf v1.5.4
    	github.com/google/cadvisor v0.49.0
    	github.com/google/cel-go v0.20.1
    	github.com/google/gnostic-models v0.6.8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/runtime/map_benchmark_test.go

    }
    
    func BenchmarkSameLengthMap(b *testing.B) {
    	// long strings, same length, differ in first few
    	// and last few bytes.
    	m := make(map[string]bool)
    	s1 := "foo" + strings.Repeat("-", 100) + "bar"
    	s2 := "goo" + strings.Repeat("-", 100) + "ber"
    	m[s1] = true
    	m[s2] = true
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		_ = m[s1]
    	}
    }
    
    type BigKey [3]int64
    
    func BenchmarkBigKeyMap(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/events/v1beta1/generated.pb.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/api/events/v1beta1/generated.proto
    
    package v1beta1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	v11 "k8s.io/api/core/v1"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	//    param may point to a savedOpenDeferState.
    	param        unsafe.Pointer
    	atomicstatus atomic.Uint32
    	stackLock    uint32 // sigprof/scang lock; TODO: fold in to atomicstatus
    	goid         uint64
    	schedlink    guintptr
    	waitsince    int64      // approx time when the g become blocked
    	waitreason   waitReason // if status==Gwaiting
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/events/v1/generated.pb.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/api/events/v1/generated.proto
    
    package v1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	v11 "k8s.io/api/core/v1"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticinit/sched.go

    	if base.Debug.InlStaticInit == 0 {
    		return false
    	}
    
    	// Handle the special case of an inlined call of
    	// a function body with a single return statement,
    	// which turns into a single assignment plus a goto.
    	//
    	// For example code like this:
    	//
    	//	type T struct{ x int }
    	//	func F(x int) *T { return &T{x} }
    	//	var Global = F(400)
    	//
    	// turns into IR like this:
    	//
    	// 	INLCALL-init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1beta1/generated.pb.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/api/batch/v1beta1/generated.proto
    
    package v1beta1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	v11 "k8s.io/api/core/v1"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	math "math"
    	math_bits "math/bits"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top