Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for touches (0.11 sec)

  1. pkg/volume/util/subpath/subpath_linux_test.go

    				child := filepath.Join(base, "child0")
    				subpath := filepath.Join(subpathDir, "child0")
    				if err := os.MkdirAll(volpath, defaultPerm); err != nil {
    					return nil, "", "", err
    				}
    				// touch file outside
    				if err := ioutil.WriteFile(child, []byte{}, defaultPerm); err != nil {
    					return nil, "", "", err
    				}
    
    				// create symlink for subpath dir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    //
    // If len(dst) < len(src), XORKeyStream will panic. It is acceptable
    // to pass a dst bigger than src, and in that case, XORKeyStream will
    // only update dst[:len(src)] and will not touch the rest of dst.
    //
    // Multiple calls to XORKeyStream behave as if the concatenation of
    // the src buffers was passed in a single run. That is, Cipher
    // maintains state and does not reset at each XORKeyStream call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  3. cluster/common.sh

      fi
    
      # KUBECONFIG determines the file we write to, but it may not exist yet
      OLD_IFS=$IFS
      IFS=':'
      for cfg in ${KUBECONFIG} ; do
        if [[ ! -e "${cfg}" ]]; then
          mkdir -p "$(dirname "${cfg}")"
          touch "${cfg}"
        fi
      done
      IFS=$OLD_IFS
    
      local cluster_args=(
          "--server=${KUBE_SERVER:-https://${KUBE_MASTER_IP}}"
      )
      if [[ -z "${CA_CERT:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            buildFile << """
                task execStartScript(type: Exec) {
                    workingDir 'build/install/sample/bin'
                    commandLine './sample'
                    environment ${envVar}: '`\$(touch "${exploit.absolutePath}")`'
                }
            """
            fails('execStartScript')
    
            then:
            result.assertTaskExecuted(":execStartScript")
            !exploit.exists()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    		attachState := rc.actualStateOfWorld.GetAttachState(volumeToAttach.VolumeName, volumeToAttach.NodeName)
    		if attachState == cache.AttachStateAttached {
    			// Volume/Node exists, touch it to reset detachRequestedTime
    			logger.V(10).Info("Volume attached--touching", "volume", volumeToAttach)
    			rc.actualStateOfWorld.ResetDetachRequestTime(logger, volumeToAttach.VolumeName, volumeToAttach.NodeName)
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. docs/fr/docs/alternatives.md

    J'ai évité la création d'un nouveau framework pendant plusieurs années. J'ai d'abord essayé de combler toutes les
    fonctionnalités couvertes par **FastAPI** en utilisant de nombreux frameworks, plug-ins et outils différents.
    
    Mais à un moment donné il n'y avait pas d'autre option que de créer quelque chose qui offrait toutes ces
    fonctionnalités, en reprenant et en combinant de la meilleure façon possible les meilleures idées des outils
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

        }
    
        def 'application ids are unique across gradleBuild builds'() {
            given:
            initFile << ""
            file('gb/settings.gradle').touch()
            file('gb/build.gradle') << ""
            buildFile << """
                tasks.help.dependsOn tasks.create('gb', GradleBuild) { gbTask ->
                    dir = 'gb'
                    gbTask.tasks = ['help']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. pkg/volume/util/subpath/subpath_linux.go

    	if t.Mode()&os.ModeDir > 0 {
    		if err = os.Mkdir(bindPathTarget, 0750); err != nil && !os.IsExist(err) {
    			return false, "", fmt.Errorf("error creating directory %s: %s", bindPathTarget, err)
    		}
    	} else {
    		// "/bin/touch <bindPathTarget>".
    		// A file is enough for all possible targets (symlink, device, pipe,
    		// socket, ...), bind-mounting them into a file correctly changes type
    		// of the target file.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa.go

    		// (0, N). These are the most dangerous lines in the package and maybe in
    		// the library: a single bit of bias in the selection of nonces would likely
    		// lead to key recovery, but no tests would fail. Look but DO NOT TOUCH.
    		if excess := len(b)*8 - c.N.BitLen(); excess > 0 {
    			// Just to be safe, assert that this only happens for the one curve that
    			// doesn't have a round number of bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. src/syscall/exec_linux.go

    	// Defined in linux/prctl.h starting with Linux 4.3.
    	const (
    		PR_CAP_AMBIENT       = 0x2f
    		PR_CAP_AMBIENT_RAISE = 0x2
    	)
    
    	// vfork requires that the child not touch any of the parent's
    	// active stack frames. Hence, the child does all post-fork
    	// processing in this stack frame and never returns, while the
    	// parent returns immediately from this frame and does all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top