Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for not_gt (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/cc/framework/cc_op_gen_util.cc

              "inline",
              "int",
              "long",
              "module",
              "mutable",
              "namespace",
              "new",
              "noexcept",
              "not",
              "not_eq",
              "nullptr",
              "operator",
              "or",
              "or_eq",
              "override",
              "private",
              "protected",
              "public",
              "register",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. docs/de/docs/python-types.md

    Durch das Deklarieren von Typen für Ihre Variablen können Editoren und Tools bessere Unterstützung bieten.
    
    Dies ist lediglich eine **schnelle Anleitung / Auffrischung** über Pythons Typhinweise. Sie deckt nur das Minimum ab, das nötig ist, um diese mit **FastAPI** zu verwenden ... was tatsächlich sehr wenig ist.
    
    **FastAPI** basiert vollständig auf diesen Typhinweisen, sie geben der Anwendung viele Vorteile und Möglichkeiten.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^FIORDCHK$/ ||
    		$2 ~ /^SIOC/ ||
    		$2 ~ /^TIOC/ ||
    		$2 ~ /^TCGET/ ||
    		$2 ~ /^TCSET/ ||
    		$2 ~ /^TC(FLSH|SBRKP?|XONC)$/ ||
    		$2 !~ "RTF_BITS" &&
    		$2 ~ /^(IFF|IFT|NET_RT|RTM(GRP)?|RTF|RTV|RTA|RTAX)_/ ||
    		$2 ~ /^BIOC/ ||
    		$2 ~ /^DIOC/ ||
    		$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. fastapi/openapi/models.py

        # A Vocabulary for Applying Subschemas
        allOf: Optional[List["SchemaOrBool"]] = None
        anyOf: Optional[List["SchemaOrBool"]] = None
        oneOf: Optional[List["SchemaOrBool"]] = None
        not_: Optional["SchemaOrBool"] = Field(default=None, alias="not")
        if_: Optional["SchemaOrBool"] = Field(default=None, alias="if")
        then: Optional["SchemaOrBool"] = None
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. docs/de/docs/deployment/concepts.md

    * Beim Hochfahren ausführen
    * Neustarts
    * Replikation (die Anzahl der laufenden Prozesse)
    * Arbeitsspeicher
    * Schritte vor dem Start
    
    Das Verständnis dieser Ideen und deren Anwendung sollte Ihnen die nötige Intuition vermitteln, um bei der Konfiguration und Optimierung Ihrer Deployments Entscheidungen zu treffen. 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                // Only 'equals' calls should be resolved into 'equals' functions.
                // Identity equals are not supposed to be resolved the same way.
                FirOperation.EQ, FirOperation.NOT_EQ -> {}
                else -> return emptyList()
            }
    
            return buildList {
                expression.processEqualsFunctions(session, analysisSession) {
                    add(it.buildSymbol(symbolBuilder))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
Back to top