Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for opcode (0.14 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    }
    
    func watchBody(events ...watch.Event) string {
    	buf := &bytes.Buffer{}
    	codec := corev1Codec
    	enc := restclientwatch.NewEncoder(streaming.NewEncoder(buf, codec), codec)
    	for _, e := range events {
    		enc.Encode(&e)
    	}
    	return buf.String()
    }
    
    func fakeClient() FakeClientFunc {
    	return func(version schema.GroupVersion) (RESTClient, error) {
    		return &fake.RESTClient{}, nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    		clientConn.Close()
    	}
    
    	connState := <-connStateChan
    	peerCerts := connState.PeerCertificates
    	if len(peerCerts) == len(test.expectedPeerCerts) {
    		for i, peerCert := range peerCerts {
    			block, _ := pem.Decode([]byte(test.expectedPeerCerts[i]))
    			if !bytes.Equal(block.Bytes, peerCert.Raw) {
    				t.Fatalf("%s: mismatch on peer cert %d", test.name, i+1)
    			}
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // This is a port of the s390x asm implementation.
    // to ppc64le.
    
    // Some changes were needed due to differences in
    // the Go opcodes and/or available instructions
    // between s390x and ppc64le.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    	}
    
    	// All blocks on s390x have their condition code mask (s390x.CCMask) as the Aux value.
    	// The condition code mask is a 4-bit mask where each bit corresponds to a condition
    	// code value. If the value of the condition code matches a bit set in the condition
    	// code mask then the first successor is executed. Otherwise the second successor is
    	// executed.
    	//
    	// | condition code value |  mask bit  |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    	}
    	c.SetAppInfo("minio-"+batchJobPrefix, r.APIVersion+" "+job.ID)
    
    	vcfg, err := c.GetBucketVersioning(ctx, remoteBkt)
    	if err != nil {
    		if miniogo.ToErrorResponse(err).Code == "NoSuchBucket" {
    			return batchReplicationJobError{
    				Code:           "NoSuchTargetBucket",
    				Description:    "The specified target bucket does not exist",
    				HTTPStatusCode: http.StatusNotFound,
    			}
    		}
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    	// Scan the comment for '\n' chars and adjust endline accordingly.
    	endline = p.file.Line(p.pos)
    	if p.lit[1] == '*' {
    		// don't use range here - no need to decode Unicode code points
    		for i := 0; i < len(p.lit); i++ {
    			if p.lit[i] == '\n' {
    				endline++
    			}
    		}
    	}
    
    	comment = &ast.Comment{p.pos, p.lit}
    	p.next0()
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

            Encoding.PERCENT,
            '['.code,
            ']'.code,
            '{'.code,
            '}'.code,
            '|'.code,
            '^'.code,
            '\''.code,
            ';'.code,
            '='.code,
            '@'.code,
          )
          .override(
            Encoding.SKIP,
            ':'.code,
            '/'.code,
            '\\'.code,
            '?'.code,
            '#'.code,
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    	},
    	ErrInvalidStorageClass: {
    		Code:           "InvalidStorageClass",
    		Description:    "Invalid storage class.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidRequestBody: {
    		Code:           "InvalidArgument",
    		Description:    "Body shouldn't be set for this request.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidMaxUploads: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. src/time/time.go

    // to t == u, since t.Equal uses the most accurate comparison available and
    // correctly handles the case when only one of its arguments has a monotonic
    // clock reading.
    type Time struct {
    	// wall and ext encode the wall time seconds, wall time nanoseconds,
    	// and optional monotonic clock reading in nanoseconds.
    	//
    	// From high to low bit position, wall encodes a 1-bit flag (hasMonotonic),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    		// The function we are in does a write to SP that we don't know
    		// how to encode in the spdelta table. Examples include context
    		// switch routines like runtime.gogo but also any code that switches
    		// to the g0 stack to run host C code.
    		// We can't reliably unwind the SP (we might not even be on
    		// the stack we think we are), so stop the traceback here.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top