Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for OUT (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // On ARM64 the bitmask can fit into an instruction.
    (SRLconst [c] (SLLconst [c] x)) && 0 < c && c < 64 => (ANDconst [1<<uint(64-c)-1] x) // mask out high bits
    (SLLconst [c] (SRLconst [c] x)) && 0 < c && c < 64 => (ANDconst [^(1<<uint(c)-1)] x) // mask out low bits
    
    // Special case setting bit as 1. An example is math.Copysign(c,-1)
    (ORconst [c1] (ANDconst [c2] x)) && c2|c1 == ^0  => (ORconst [c1] x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    			s.Phase = v1.PodFailed
    			s.Reason = result.Reason
    			s.Message = result.Message
    			break
    		}
    	}
    
    	// pods are not allowed to transition out of terminal phases
    	if pod.Status.Phase == v1.PodFailed || pod.Status.Phase == v1.PodSucceeded {
    		// API server shows terminal phase; transitions are not allowed
    		if s.Phase != pod.Status.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    		case signatureMismatch:
    			req, err = malformDataSigV4(req, 'z')
    		case unexpectedEOF:
    			req, err = truncateChunkByHalfSigv4(req)
    		case tooBigDecodedLength:
    			// Set decoded length to a large value out of int64 range to simulate parse failure.
    			req.Header.Set("x-amz-decoded-content-length", "9999999999999999999999")
    		}
    
    		if err != nil {
    			t.Fatalf("Error injecting faults into the request: <ERROR> %v.", err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier_test.go

    	// check ipvs service and destinations
    	services, err := ipvs.GetVirtualServers()
    	if err != nil {
    		t.Errorf("Failed to get ipvs services, err: %v", err)
    	}
    	if len(services) != 3 { // ipvs filters out by ipfamily
    		t.Errorf("Expect 3 ipvs services, got %d", len(services))
    	}
    	found := false
    	for _, svc := range services {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	func(cfg config.Config) (Warning, error) {
    		spec, ok := cfg.Spec.(*extensions.WasmPlugin)
    		if !ok {
    			return nil, fmt.Errorf("cannot cast to wasmplugin")
    		}
    		// figure out how to add check for targetRef and workload selector is not nil
    		errs := Validation{}
    		errs = AppendValidation(errs,
    			validateOneOfSelectorType(spec.GetSelector(), spec.GetTargetRef(), spec.GetTargetRefs()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    		srcInfo.metadataOnly && srcOpts.VersionID == "" && !objectEncryption {
    		// If x-amz-metadata-directive is not set to REPLACE then we need
    		// to error out if source and destination are same.
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidCopyDest), r.URL)
    		return
    	}
    
    	remoteCallRequired := isRemoteCopyRequired(ctx, srcBucket, dstBucket, objectAPI)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    				// https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/filters/listener/proxy_protocol/v3/proxy_protocol.proto
    				// If the PROXY protocol filter is enabled, Envoy should parse and consume the header out of the TCP payload, otherwise echo it back as-is.
    				Message:              "This is a test TCP message",
    				ProxyProtocolVersion: 1,
    				Check: check.Each(
    					func(r echoClient.Response) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package x86
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"encoding/binary"
    	"fmt"
    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. pkg/controller/podautoscaler/horizontal_test.go

    func TestComputedToleranceAlgImplementation(t *testing.T) {
    
    	startPods := int32(10)
    	// 150 mCPU per pod.
    	totalUsedCPUOfAllPods := uint64(startPods * 150)
    	// Each pod starts out asking for 2X what is really needed.
    	// This means we will have a 50% ratio of used/requested
    	totalRequestedCPUOfAllPods := int32(2 * totalUsedCPUOfAllPods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/asmz.go

    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package s390x
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"fmt"
    	"log"
    	"math"
    	"sort"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top