Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for Ufour (0.12 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	if offset == 0 {
    		return
    	}
    	switch opcode {
    	case 0x7:
    		n = 1 // one register
    	case 0xa:
    		n = 2 // two registers
    	case 0x6:
    		n = 3 // three registers
    	case 0x2:
    		n = 4 // four registers
    	default:
    		c.ctxt.Diag("invalid register numbers in ARM64 register list: %v", p)
    	}
    
    	switch as {
    	case AVLD1R, AVLD2R, AVLD3R, AVLD4R:
    		if offset != n*(1<<uint(size)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/net/http/server.go

    		return
    	}
    	var h Handler
    	if use121 {
    		h, _ = mux.mux121.findHandler(r)
    	} else {
    		h, r.Pattern, r.pat, r.matches = mux.findHandler(r)
    	}
    	h.ServeHTTP(w, r)
    }
    
    // The four functions below all call ServeMux.register so that callerLocation
    // always refers to user code.
    
    // Handle registers the handler for the given pattern.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/reflect/value.go

    		// Zero-sized types are trivial: nothing to do.
    		if len(valueSteps) == 0 {
    			if len(methodSteps) != 0 {
    				panic("method ABI and value ABI do not align")
    			}
    			continue
    		}
    
    		// There are four cases to handle in translating each
    		// argument:
    		// 1. Stack -> stack translation.
    		// 2. Stack -> registers translation.
    		// 3. Registers -> stack translation.
    		// 4. Registers -> registers translation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    	return allErrs
    }
    
    // Provide an upgrade path from PVC with storage class specified in beta
    // annotation to storage class specified in attribute. We allow update of
    // StorageClassName only if following four conditions are met at the same time:
    // 1. The old pvc's StorageClassAnnotation is set
    // 2. The old pvc's StorageClassName is not set
    // 3. The new pvc's StorageClassName is set and equal to the old value in annotation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // newValue4 adds a new value with four arguments to the current block.
    func (s *state) newValue4(op ssa.Op, t *types.Type, arg0, arg1, arg2, arg3 *ssa.Value) *ssa.Value {
    	return s.curBlock.NewValue4(s.peekPos(), op, t, arg0, arg1, arg2, arg3)
    }
    
    // newValue4I adds a new value with four arguments and an auxint value to the current block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - The `SidecarContainers` feature has graduated to `beta` and is enabled by default. ([#121579](https://github.com/kubernetes/kubernetes/pull/121579), [@gjkim42](https://github.com/gjkim42))
    - The `kube-apiserver` will now expose four new metrics to inform about errors on the clusterIP and nodePort allocation logic. ([#120843](https://github.com/kubernetes/kubernetes/pull/120843), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // environment variable (For more details see: 'go help gopath').
    //
    // If no import paths are given, the action applies to the
    // package in the current directory.
    //
    // There are four reserved names for paths that should not be used
    // for packages to be built with the go tool:
    //
    // - "main" denotes the top-level package in a stand-alone executable.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    // Put3 appends three bytes to the end of the buffer.
    func (ab *AsmBuf) Put3(x, y, z byte) {
    	ab.buf[ab.off+0] = x
    	ab.buf[ab.off+1] = y
    	ab.buf[ab.off+2] = z
    	ab.off += 3
    }
    
    // Put4 appends four bytes to the end of the buffer.
    func (ab *AsmBuf) Put4(x, y, z, w byte) {
    	ab.buf[ab.off+0] = x
    	ab.buf[ab.off+1] = y
    	ab.buf[ab.off+2] = z
    	ab.buf[ab.off+3] = w
    	ab.off += 4
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	}
    	g := func(in []Value) []Value {
    		runtime.GC()
    		return nil
    	}
    	typ := ValueOf(f).Type()
    	f2 := MakeFunc(typ, g).Interface().(func(string, string, string, string, string))
    	f2("four", "five5", "six666", "seven77", "eight888")
    }
    
    // Issue 18635 (function version).
    func TestKeepFuncLive(t *testing.T) {
    	// Test that we keep makeFuncImpl live as long as it is
    	// referenced on the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Specifies the configution of istiod
    	Istiod *IstiodConfig `protobuf:"bytes,54,opt,name=istiod,proto3" json:"istiod,omitempty"`
    	// Configure the Pilot certificate provider.
    	// Currently, four providers are supported: "kubernetes", "istiod", "custom" and "none".
    	PilotCertProvider string `protobuf:"bytes,56,opt,name=pilotCertProvider,proto3" json:"pilotCertProvider,omitempty"`
    	// Configure the policy for validating JWT.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top