Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for GetCounter (0.2 sec)

  1. pkg/volume/fc/attacher.go

    func (plugin *fcPlugin) NewDeviceMounter() (volume.DeviceMounter, error) {
    	return plugin.NewAttacher()
    }
    
    func (plugin *fcPlugin) GetDeviceMountRefs(deviceMountPath string) ([]string, error) {
    	mounter := plugin.host.GetMounter(plugin.GetPluginName())
    	return mounter.GetMountRefs(deviceMountPath)
    }
    
    func (attacher *fcAttacher) Attach(spec *volume.Spec, nodeName types.NodeName) (string, error) {
    	return "", nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go

    		panic("chacha20poly1305: invalid buffer overlap")
    	}
    
    	var polyKey [32]byte
    	s, _ := chacha20.NewUnauthenticatedCipher(c.key[:], nonce)
    	s.XORKeyStream(polyKey[:], polyKey[:])
    	s.SetCounter(1) // set the counter to 1, skipping 32 bytes
    	s.XORKeyStream(ciphertext, plaintext)
    
    	p := poly1305.New(&polyKey)
    	writeWithPadding(p, additionalData)
    	writeWithPadding(p, ciphertext)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. pkg/volume/flexvolume/attacher.go

    func (a *flexVolumeAttacher) MountDevice(spec *volume.Spec, devicePath string, deviceMountPath string, _ volume.DeviceMounterArgs) error {
    	// Mount only once.
    	alreadyMounted, err := prepareForMount(a.plugin.host.GetMounter(a.plugin.GetPluginName()), deviceMountPath)
    	if err != nil {
    		return err
    	}
    	if alreadyMounted {
    		return nil
    	}
    
    	call := a.plugin.NewDriverCall(mountDeviceCmd)
    	call.Append(deviceMountPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 03 23:29:42 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/plugin.go

    func (plugin *flexVolumePlugin) NewMounter(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions) (volume.Mounter, error) {
    	return plugin.newMounterInternal(spec, pod, plugin.host.GetMounter(plugin.GetPluginName()), plugin.runner)
    }
    
    // newMounterInternal is the internal mounter routine to build the volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/volume/flexvolume/detacher-defaults.go

    	klog.Warning(logPrefix(d.plugin.flexVolumePlugin), "using default UnmountDevice for device mount path ", deviceMountPath)
    	return mount.CleanupMountPoint(deviceMountPath, d.plugin.host.GetMounter(d.plugin.GetPluginName()), false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 17 04:51:24 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  6. pkg/volume/fc/fc.go

    	// Inject real implementations here, test through the internal function.
    	return plugin.newMounterInternal(spec, pod.UID, &fcUtil{}, plugin.host.GetMounter(plugin.GetPluginName()), plugin.host.GetExec(plugin.GetPluginName()))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    	d = bits.RotateLeft32(d, 8)
    	c += d
    	b ^= c
    	b = bits.RotateLeft32(b, 7)
    	return a, b, c, d
    }
    
    // SetCounter sets the Cipher counter. The next invocation of XORKeyStream will
    // behave as if (64 * counter) bytes had been encrypted so far.
    //
    // To prevent accidental counter reuse, SetCounter panics if counter is less
    // than the current value.
    //
    // Note that the execution time of XORKeyStream is not independent of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  8. pkg/volume/flexvolume/detacher.go

    		return nil
    	}
    	if pathErr != nil && !mount.IsCorruptedMnt(pathErr) {
    		return fmt.Errorf("error checking path: %w", pathErr)
    	}
    
    	notmnt, err := isNotMounted(d.plugin.host.GetMounter(d.plugin.GetPluginName()), deviceMountPath)
    	if err != nil {
    		if mount.IsCorruptedMnt(err) {
    			notmnt = false // Corrupted error is assumed to be mounted.
    		} else {
    			return err
    		}
    	}
    
    	if notmnt {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. pkg/volume/local/local.go

    	}
    
    	return &localVolumeMounter{
    		localVolume: &localVolume{
    			pod:             pod,
    			podUID:          pod.UID,
    			volName:         spec.Name(),
    			mounter:         plugin.host.GetMounter(plugin.GetPluginName()),
    			hostUtil:        kvh.GetHostUtil(),
    			plugin:          plugin,
    			globalPath:      globalLocalPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/iscsi.go

    		return nil, fmt.Errorf("nil pod")
    	}
    	secret, err := createSecretMap(spec, plugin, pod.Namespace)
    	if err != nil {
    		return nil, err
    	}
    	return plugin.newMounterInternal(spec, pod.UID, &ISCSIUtil{}, plugin.host.GetMounter(plugin.GetPluginName()), plugin.host.GetExec(plugin.GetPluginName()), secret)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top