Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 226 for touches (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/os/os_test.go

    			return nil, xerr
    		}
    		return Lstat(path)
    	}
    	defer func() { *LstatP = Lstat }()
    
    	dir := t.TempDir()
    	touch(t, filepath.Join(dir, "good1"))
    	touch(t, filepath.Join(dir, "x")) // will disappear or have an error
    	touch(t, filepath.Join(dir, "good2"))
    	readDir := func() ([]FileInfo, error) {
    		d, err := Open(dir)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer d.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. test/codegen/memcombine.go

    }
    
    // Some tougher cases for the memcombine pass.
    
    func reassoc_load_uint32(b []byte) uint32 {
    	// amd64:`MOVL\s\([A-Z]+\)`,-`MOV[BW]`,-`OR`
    	return (uint32(b[0]) | uint32(b[1])<<8) | (uint32(b[2])<<16 | uint32(b[3])<<24)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/fmt/scan_test.go

    	if n != 1 || i != 234 {
    		t.Errorf("Sscan expected one value of 234; got %d %d", n, i)
    	}
    	if err != io.EOF {
    		t.Errorf("Sscan expected EOF; got %q", err)
    	}
    	// Trailing space is tougher.
    	n, err = Sscan("234 ", &i, &j)
    	if n != 1 || i != 234 {
    		t.Errorf("Sscan expected one value of 234; got %d %d", n, i)
    	}
    	if err != io.EOF {
    		t.Errorf("Sscan expected EOF; got %q", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top