Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for not_gt (0.1 sec)

  1. docs/de/docs/tutorial/dependencies/sub-dependencies.md

    # Unterabhängigkeiten
    
    Sie können Abhängigkeiten erstellen, die **Unterabhängigkeiten** haben.
    
    Diese können so **tief** verschachtelt sein, wie nötig.
    
    **FastAPI** kümmert sich darum, sie aufzulösen.
    
    ## Erste Abhängigkeit, „Dependable“
    
    Sie könnten eine erste Abhängigkeit („Dependable“) wie folgt erstellen:
    
    === "Python 3.10+"
    
        ```Python hl_lines="8-9"
        {!> ../../../docs_src/dependencies/tutorial005_an_py310.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:09:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

        private List<URL> implementationClassPath;
        private List<URL> implementationModulePath;
        private boolean shouldPublishJvmMemoryInfo;
        private NativeServicesMode nativeServicesMode = NativeServicesMode.NOT_SET;
    
        DefaultWorkerProcessBuilder(
            JavaExecHandleFactory execHandleFactory,
            MessagingServer server,
            IdGenerator<Long> idGenerator,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    		$2 !~ "NLA_TYPE_MASK" &&
    		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P)_/ ||
    		$2 ~ /^SIOC/ ||
    		$2 ~ /^TIOC/ ||
    		$2 !~ "RTF_BITS" &&
    		$2 ~ /^(IFF|IFT|NET_RT|RTM|RTF|RTV|RTA|RTAX)_/ ||
    		$2 ~ /^BIOC/ ||
    		$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
    		$2 ~ /^RLIMIT_(AS|CORE|CPU|DATA|FSIZE|NOFILE|STACK)|RLIM_INFINITY/ ||
    		$2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  4. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

            // When not explicitly set, use the value from system properties
            NativeServicesMode nativeServicesMode = config.getNativeServicesMode() == NativeServicesMode.NOT_SET
                ? NativeServicesMode.fromSystemProperties()
                : config.getNativeServicesMode();
    
            // Configure services
            File gradleUserHomeDir = new File(config.getGradleUserHomeDirPath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_mounter.go

    func isDirMounted(plug *csiPlugin, dir string) (bool, error) {
    	mounter := plug.host.GetMounter(plug.GetPluginName())
    	notMnt, err := mounter.IsLikelyNotMountPoint(dir)
    	if err != nil && !os.IsNotExist(err) {
    		klog.Error(log("isDirMounted IsLikelyNotMountPoint test failed for dir [%v]", dir))
    		return false, err
    	}
    	return !notMnt, nil
    }
    
    func isCorruptedDir(dir string) bool {
    	_, pathErr := mount.PathExists(dir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. pkg/volume/emptydir/empty_dir.go

    	return ed.SetUpAt(ed.GetPath(), mounterArgs)
    }
    
    // SetUpAt creates new directory.
    func (ed *emptyDir) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	notMnt, err := ed.mounter.IsLikelyNotMountPoint(dir)
    	// Getting an os.IsNotExist err from is a contingency; the directory
    	// may not exist yet, in which case, setup should run.
    	if err != nil && !os.IsNotExist(err) {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	MVN_S_LT
    	MVN_S_GT
    	MVN_S_LE
    	MVN_S
    	MVN_S_ZZ
    	NOP_EQ
    	NOP_NE
    	NOP_CS
    	NOP_CC
    	NOP_MI
    	NOP_PL
    	NOP_VS
    	NOP_VC
    	NOP_HI
    	NOP_LS
    	NOP_GE
    	NOP_LT
    	NOP_GT
    	NOP_LE
    	NOP
    	NOP_ZZ
    	ORR_EQ
    	ORR_NE
    	ORR_CS
    	ORR_CC
    	ORR_MI
    	ORR_PL
    	ORR_VS
    	ORR_VC
    	ORR_HI
    	ORR_LS
    	ORR_GE
    	ORR_LT
    	ORR_GT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

        assertFailsWith<IllegalArgumentException> {
          builder.header("Name", s)
        }
        assertFailsWith<IllegalArgumentException> {
          builder.addHeader("Name", s)
        }
      }
    
      @Test
      fun noTag() {
        val request =
          Request.Builder()
            .url("https://square.com")
            .build()
        assertThat(request.tag<Any>()).isNull()
        assertThat(request.tag(Any::class)).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/syscall/mkerrors.sh

    		$2 !~ "NLA_TYPE_MASK" &&
    		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P)_/ ||
    		$2 ~ /^SIOC/ ||
    		$2 ~ /^TIOC/ ||
    		$2 !~ "RTF_BITS" &&
    		$2 ~ /^(IFF|IFT|NET_RT|RTM|RTF|RTV|RTA|RTAX)_/ ||
    		$2 ~ /^BIOC/ ||
    		$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
    		$2 ~ /^RLIMIT_(AS|CORE|CPU|DATA|FSIZE|NOFILE|STACK)|RLIM_INFINITY/ ||
    		$2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/RequestTest.kt

        assertFailsWith<IllegalArgumentException> {
          builder.header("Name", s)
        }
        assertFailsWith<IllegalArgumentException> {
          builder.addHeader("Name", s)
        }
      }
    
      @Test
      fun noTag() {
        val request =
          Request.Builder()
            .url("https://square.com")
            .build()
        assertThat(request.tag()).isNull()
        assertThat(request.tag(Any::class.java)).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top