Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 125 for pfxload (0.23 sec)

  1. pkg/volume/projected/projected_test.go

    				t.Errorf("%v: unexpected failure making payload: %v", tc.name, err)
    				return
    			}
    			if err == nil && !tc.success {
    				t.Errorf("%v: unexpected success making payload", tc.name)
    				return
    			}
    			if !tc.success {
    				return
    			}
    			if e, a := tc.payload, actualPayload; !reflect.DeepEqual(e, a) {
    				t.Errorf("%v: expected and actual payload do not match", tc.name)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/model/generator_test.go

                  filter: envoy.filters.http.jwt_authn
                  path:
                  - key: payload
                  - key: iss
                  value:
                    string_match:
                      safe_regex: {regex: .+}
              - metadata:
                  filter: envoy.filters.http.jwt_authn
                  path:
                  - key: payload
                  - key: sub
                  value:
                    string_match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. internal/grid/connection.go

    func (c *Connection) sendMsg(conn net.Conn, msg message, payload msgp.MarshalSizer) error {
    	if payload != nil {
    		if sz := payload.Msgsize(); cap(msg.Payload) < sz {
    			PutByteBuffer(msg.Payload)
    			msg.Payload = GetByteBufferCap(sz)[:0]
    		}
    		var err error
    		msg.Payload, err = payload.MarshalMsg(msg.Payload)
    		if err != nil {
    			return err
    		}
    		defer PutByteBuffer(msg.Payload)
    	}
    	dst := GetByteBufferCap(msg.Msgsize())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. tests/common/jwt/jwt_token.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // package jwt includes sample JWT Token used in e2e tests.
    package jwt
    
    const (
    	// Payload {
    	//  "exp": 4715782722,
    	//  "groups": [
    	//    "group-1"
    	//  ],
    	//  "iat": 1562182722,
    	//  "iss": "******@****.***",
    	//  "sub": "sub-1"
    	// }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/volume/util/atomic_writer.go

    		}
    	}
    
    	return nil
    }
    
    // validatePayload returns an error if any path in the payload returns a copy of the payload with the paths cleaned.
    func validatePayload(payload map[string]FileProjection) (map[string]FileProjection, error) {
    	cleanPayload := make(map[string]FileProjection)
    	for k, content := range payload {
    		if err := validatePath(k); err != nil {
    			return nil, err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/MessageTest.groovy

            def transported = transport(new TestPayloadMessage(payload: original))
    
            then:
            transported.payload.class == ExceptionWithExceptionField
            transported.payload.message == "message"
    
            and:
            transported.payload.throwable.class == DefaultMultiCauseException
            transported.payload.throwable.message == "nested"
    
            and:
            transported.payload.throwable == transported.payload.cause
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. internal/grid/grid_test.go

    	errFatal(local.RegisterSingleHandler(handlerTest, func(payload []byte) ([]byte, *RemoteErr) {
    		t.Log("1: server payload: ", len(payload), "bytes.")
    		return append([]byte{}, payload...), nil
    	}))
    	// 2: Return as error
    	errFatal(local.RegisterSingleHandler(handlerTest2, func(payload []byte) ([]byte, *RemoteErr) {
    		t.Log("2: server payload: ", len(payload), "bytes.")
    		err := RemoteErr(payload)
    		return nil, &err
    	}))
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. tests/update_test.go

    	result.Friends = user2.Friends
    
    	DB.Select("Name", "Account", "Toys", "Manager", "ManagerID", "Languages").Save(&result)
    
    	var result2 User
    	DB.Preload("Account").Preload("Pets").Preload("Toys").Preload("Company").Preload("Manager").Preload("Team").Preload("Languages").Preload("Friends").First(&result2, user.ID)
    
    	result.Languages = append(user.Languages, result.Languages...)
    	result.Toys = append(user.Toys, result.Toys...)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  9. cmd/streaming-signature-v4.go

    	if errCode != ErrNone {
    		return cred, "", "", time.Time{}, errCode
    	}
    
    	// Payload streaming.
    	payload := streamingContentSHA256
    	if trailers {
    		payload = streamingContentSHA256Trailer
    	}
    
    	// Payload for STREAMING signature should be 'STREAMING-AWS4-HMAC-SHA256-PAYLOAD'
    	if payload != req.Header.Get(xhttp.AmzContentSha256) {
    		return cred, "", "", time.Time{}, ErrContentSHA256Mismatch
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. pkg/volume/configmap/configmap.go

    		return volume.SetVolumeOwnership(b, dir, mounterArgs.FsGroup, nil /*fsGroupChangePolicy*/, volumeutil.FSGroupCompleteHook(b.plugin, nil))
    	}
    	err = writer.Write(payload, setPerms)
    	if err != nil {
    		klog.Errorf("Error writing payload to dir: %v", err)
    		return err
    	}
    
    	setupSuccess = true
    	return nil
    }
    
    // MakePayload function is exported so that it can be called from the projection volume driver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top