Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,311 for modes (0.06 sec)

  1. src/crypto/aes/cipher_s390x.go

    // mode. The length must be a multiple of BlockSize (16).
    //
    //go:noescape
    func cryptBlocks(c code, key, dst, src *byte, length int)
    
    func newCipher(key []byte) (cipher.Block, error) {
    	// The aesCipherAsm type implements the cbcEncAble, cbcDecAble,
    	// ctrAble and gcmAble interfaces. We therefore need to check
    	// for all the features required to implement these modes.
    	// Keep in sync with crypto/tls/common.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/crypto/cipher/cipher.go

    // Package cipher implements standard block cipher modes that can be wrapped
    // around low-level block cipher implementations.
    // See https://csrc.nist.gov/groups/ST/toolkit/BCM/current_modes.html
    // and NIST Special Publication 800-38A.
    package cipher
    
    // A Block represents an implementation of block cipher
    // using a given key. It provides the capability to encrypt
    // or decrypt individual blocks. The mode implementations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. cluster/kube-up.sh

    verify-release-tars
    
    echo "... calling kube-up" >&2
    kube-up
    
    echo "... calling validate-cluster" >&2
    # Override errexit
    (validate-cluster) && validate_result="$?" || validate_result="$?"
    
    # We have two different failure modes from validate cluster:
    # - 1: fatal error - cluster won't be working correctly
    # - 2: weak error - something went wrong, but cluster probably will be working correctly
    # We just print an error message in case 2).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 15:03:34 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/covdata/doc.go

    	covmeta.cce1b350af34b6d0fb59cc1725f0ee27
    	$
    
    Run covdata via "go tool covdata <mode>", where 'mode' is a subcommand
    selecting a specific reporting, merging, or data manipulation operation.
    Descriptions on the various modes (run "go tool cover <mode> -help" for
    specifics on usage of a given mode):
    
    1. Report percent of statements covered in each profiled package
    
    	$ go tool covdata percent -i=profiledir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    }
    
    func (anyObject) DeepCopyObject() runtime.Object {
    	panic("unimplemented")
    }
    
    func (p anyObject) MarshalCBOR() ([]byte, error) {
    	return modes.Encode.Marshal(p.Value)
    }
    
    func (p *anyObject) UnmarshalCBOR(in []byte) error {
    	return modes.Decode.Unmarshal(in, &p.Value)
    }
    
    func TestEncode(t *testing.T) {
    	for _, tc := range []struct {
    		name           string
    		in             runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java

        RoundToDoubleTester(BigDecimal input) {
          this.input = input;
        }
    
        RoundToDoubleTester setExpectation(double expectedValue, RoundingMode... modes) {
          for (RoundingMode mode : modes) {
            Double previous = expectedValues.put(mode, expectedValue);
            if (previous != null) {
              throw new AssertionError();
            }
          }
          return this;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. src/cmd/internal/cov/mreader.go

    	case io.SeekStart:
    		r.off = offset
    		return offset, nil
    	case io.SeekCurrent:
    		return r.off, nil
    	case io.SeekEnd:
    		r.off = int64(len(r.fileView)) + offset
    		return r.off, nil
    	}
    	panic("other modes not implemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:12:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/attributes/Bundling.java

     * limitations under the License.
     */
    package org.gradle.api.attributes;
    
    import org.gradle.api.Named;
    
    /**
     * This attribute describes how dependencies of a component are found.
     * There are currently 3 supported modes:
     * <ul>
     *     <li>{@code external}, the default, where dependencies, if any, are found transitively</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  9. pkg/apis/storage/fuzzer/fuzzer.go

    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    
    			// Custom fuzzing for volume modes.
    			switch c.Rand.Intn(7) {
    			case 0:
    				obj.Spec.VolumeLifecycleModes = nil
    			case 1:
    				obj.Spec.VolumeLifecycleModes = []storage.VolumeLifecycleMode{}
    			case 2:
    				// Invalid mode.
    				obj.Spec.VolumeLifecycleModes = []storage.VolumeLifecycleMode{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/internal/coverage/slicewriter/slicewriter.go

    			return 0, fmt.Errorf("invalid seek: new offset %d (out of range [0 %d]", newoff, len(sws.payload))
    		}
    		sws.off = newoff
    		return sws.off, nil
    	}
    	// other modes not supported
    	return 0, fmt.Errorf("unsupported seek mode %d", whence)
    }
    
    // BytesWritten returns the underlying byte slice for the WriteSeeker,
    // containing the data written to it via Write/Seek calls.
    func (sws *WriteSeeker) BytesWritten() []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top