Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for Opcode (0.21 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    			ipMode:           nil,
    			expectedServices: 2,
    		},
    		/* LoadBalancerIPMode enabled */
    		{
    			name:             "LoadBalancerIPMode enabled, ipMode Proxy",
    			ipModeEnabled:    true,
    			svcIP:            "10.20.30.41",
    			svcLBIP:          "1.2.3.4",
    			ipMode:           ptr.To(v1.LoadBalancerIPModeProxy),
    			expectedServices: 1,
    		},
    		{
    			name:             "LoadBalancerIPMode enabled, ipMode VIP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	}
    }
    
    func verifyError(c *check, response *http.Response, code, description string, statusCode int) {
    	c.Helper()
    	data, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    	errorResponse := APIErrorResponse{}
    	err = xml.Unmarshal(data, &errorResponse)
    	c.Assert(err, nil)
    	c.Assert(errorResponse.Code, code)
    	c.Assert(errorResponse.Message, description)
    	c.Assert(response.StatusCode, statusCode)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

            "properties": {
              "apiServerID": {
                "description": "The ID of the reporting API server.",
                "type": "string"
              },
              "decodableVersions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    			}
    			if test.expectedErr.Code != errXML.Code {
    				t.Errorf("Test %d %s expected to fail with error %s, but received %s", i+1, instanceType,
    					test.expectedErr.Code, errXML.Code)
    			}
    		} else if rec.Code != http.StatusOK {
    			t.Errorf("Test %d %s expected to succeed, but failed with HTTP status code %d",
    				i+1, instanceType, rec.Code)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    		t.Fatalf("error was not an UnhandledCriticalExtension: %v", err)
    	}
    }
    
    func certificateFromPEM(pemBytes string) (*Certificate, error) {
    	block, _ := pem.Decode([]byte(pemBytes))
    	if block == nil {
    		return nil, errors.New("failed to decode PEM")
    	}
    	return ParseCertificate(block.Bytes)
    }
    
    func testVerify(t *testing.T, test verifyTest, useSystemRoots bool) {
    	opts := VerifyOptions{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    //	At least in the current tree, these invocations all print the
    //	documentation for json.Decoder's Decode method:
    //
    //	go doc json.Decoder.Decode
    //	go doc json.decoder.decode
    //	go doc json.decode
    //	cd go/src/encoding/json; go doc decode
    //
    // Flags:
    //
    //	-all
    //		Show all the documentation for the package.
    //	-c
    //		Respect case when matching symbols.
    //	-cmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    static boolean isArrayByteBase64(byte[]); public static byte[] encodeBase64(byte[]); public static byte[] encodeBase64Chunked(byte[]); public byte[] decode(byte[]); public static byte[] encodeBase64(byte[], boolean); public static byte[] decodeBase64(byte[]); static byte[] discardWhitespace(byte[]); static byte[] discardNonBase64(byte[]); public byte[] encode(byte[]); static void <clinit>(); } org/codehaus/plexus/util/CachedMap.class package org.codehaus.plexus.util; public final synchronized class CachedMap...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    		}
    
    		contentType := expfmt.Negotiate(r.Header)
    		w.Header().Set("Content-Type", string(contentType))
    
    		enc := expfmt.NewEncoder(w, contentType)
    		for _, mf := range mfs {
    			if err := enc.Encode(mf); err != nil {
    				// client may disconnect for any reasons
    				// we do not have to log this.
    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. pkg/apis/core/zz_generated.deepcopy.go

    func (in *LoadBalancerIngress) DeepCopyInto(out *LoadBalancerIngress) {
    	*out = *in
    	if in.IPMode != nil {
    		in, out := &in.IPMode, &out.IPMode
    		*out = new(LoadBalancerIPMode)
    		**out = **in
    	}
    	if in.Ports != nil {
    		in, out := &in.Ports, &out.Ports
    		*out = make([]PortStatus, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *LoadBalancerIngress) DeepCopyInto(out *LoadBalancerIngress) {
    	*out = *in
    	if in.IPMode != nil {
    		in, out := &in.IPMode, &out.IPMode
    		*out = new(LoadBalancerIPMode)
    		**out = **in
    	}
    	if in.Ports != nil {
    		in, out := &in.Ports, &out.Ports
    		*out = make([]PortStatus, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top