Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 377 for plan (0.19 sec)

  1. docs/tr/docs/alternatives.md

    Bu Python teknolojisi bile değil. NestJS, Angulardan ilham almış olan bir JavaScript (TypeScript) NodeJS framework'ü.
    
    Flask-apispec ile yapılabileceklere nispeten benzeyen bir şey elde ediyor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_getters.go

    	}
    	// Only use IsLikelyNotMountPoint to check might not cover all cases. For CSI volumes that
    	// either: 1) don't mount or 2) bind mount in the rootfs, the mount check will not work as expected.
    	// We plan to remove this mountpoint check as a condition before deleting pods since it is
    	// not reliable and the condition might be different for different types of volumes. But it requires
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/manager.go

    				claimInfo = m.cache.add(newClaimInfoFromClaim(resourceClaim))
    			}
    
    			// Add a reference to the current pod in the claim info.
    			claimInfo.addPodReference(pod.UID)
    
    			// Checkpoint to ensure all claims we plan to prepare are tracked.
    			// If something goes wrong and the newly referenced pod gets
    			// deleted without a successful prepare call, we will catch
    			// that in the reconcile loop and take the appropriate action.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/edit.go

    			// itself out of the bottom of the module graph), or we can try
    			// downgrading it.
    			//
    			// If the version we would be upgrading to is ok to use, we will just plan
    			// to do that and avoid the overhead of trying to find some lower version
    			// to downgrade to.
    			//
    			// However, it is possible that m depends on something that leads to its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    		}
    	}
    
    	// The perm argument is meant to be adjusted according to umask,
    	// but we don't know what the umask is.
    	// Create a dummy file to find out.
    	// This avoids build tags and works even on systems like Plan 9
    	// where the file mask computation incorporates other information.
    	mode := perm
    	f, err := os.OpenFile(filepath.Clean(dst)+"-go-tmp-umask", os.O_WRONLY|os.O_CREATE|os.O_EXCL, perm)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/syscall/exec_linux.go

    		// mounted with --shared. Systemd mounts / with --shared. For a
    		// long discussion of the pros and cons of this see debian bug 739593.
    		// The Go model of unsharing is more like Plan 9, where you ask
    		// to unshare and the namespaces are unconditionally unshared.
    		// To make this model work we must further mark / as MS_PRIVATE.
    		// This is what the standard unshare command does.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/flag/flag_test.go

    			os.Environ(),
    			"GO_CHILD_FLAG="+test.flag,
    			"GO_CHILD_FLAG_HANDLE="+test.flagHandle,
    		)
    		cmd.Run()
    		got := cmd.ProcessState.ExitCode()
    		// ExitCode is either 0 or 1 on Plan 9.
    		if runtime.GOOS == "plan9" && test.expectExit != 0 {
    			test.expectExit = 1
    		}
    		if got != test.expectExit {
    			t.Errorf("unexpected exit code for test case %+v \n: got %d, expect %d",
    				test, got, test.expectExit)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. README.md

    - If you plan to use `mc admin update`, MinIO process must have write access to the parent directory where the binary is present on the host system.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. src/runtime/sema.go

    // Think of them as a way to implement sleep and wakeup
    // such that every sleep is paired with a single wakeup,
    // even if, due to races, the wakeup happens before the sleep.
    //
    // See Mullender and Cox, ``Semaphores in Plan 9,''
    // https://swtch.com/semaphore.pdf
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // Asynchronous semaphore for sync.Mutex.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

    import static org.gradle.util.Matchers.matchesRegexp
    import static org.gradle.util.Matchers.normalizedLineSeparators
    
    /**
     * Spockified version of AbstractIntegrationTest.
     *
     * Plan is to bring features over as needed.
     */
    @CleanupTestDirectory
    @SuppressWarnings("IntegrationTestFixtures")
    @IntegrationTestTimeout(DEFAULT_TIMEOUT_SECONDS)
    abstract class AbstractIntegrationSpec extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top