Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 226 for touches (0.09 sec)

  1. pkg/proxy/apis/config/types.go

    	// in an immediate IPVS resync.
    	MinSyncPeriod metav1.Duration
    	// scheduler is the IPVS scheduler to use
    	Scheduler string
    	// excludeCIDRs is a list of CIDRs which the ipvs proxier should not touch
    	// when cleaning up ipvs services.
    	ExcludeCIDRs []string
    	// strictARP configures arp_ignore and arp_announce to avoid answering ARP queries
    	// from kube-ipvs0 interface
    	StrictARP bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Source code and build logic of every software project should be organized in a meaningful way.
    This page lays out the best practices that lead to readable, maintainable projects.
    The following sections also touch on common problems and how to avoid them.
    
    [[sec:separate_language_source_files]]
    == Separate language-specific source files
    
    Gradle's language plugins establish conventions for discovering and compiling source code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/RegularImmutableMap.java

            table[tableIndex] = effectiveEntry;
          } else {
            // We already saw this key, and the first value we saw (going backwards) is the one we are
            // keeping. So we won't touch table[], but we do still want to add the existing entry that
            // we found to entries[] so that we will see this key in the right place when iterating.
            if (duplicates == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    ber|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean"},h="next",c="prev",u="left",f="right",d={SLIDE:"slide"+i,SLID:"slid"+i,KEYDOWN:"keydown"+i,MOUSEENTER:"mouseenter"+i,MOUSELEAVE:"mouseleave"+i,TOUCHEND:"touchend"+i,LOAD_DATA_API:"load"+i+".data-api",CLICK_DATA_API:"click"+i+".data-api"},_="carousel",g="active",p="slide",m="carousel-item-right",v="carousel-item-left",E="carousel-item-next",T="carousel-item-prev",y={ACTIVE:".active",ACTIVE_ITEM:".act...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
  5. docs/de/docs/help-fastapi.md

    * Wenn Sie in Geberlaune sind, können Sie versuchen, selbst ein solches Beispiel zu erstellen, nur basierend auf der Beschreibung des Problems. Denken Sie jedoch daran, dass dies viel Zeit in Anspruch nehmen kann und dass es besser sein kann, zunächst um eine Klärung des Problems zu bitten.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            when:
            succeeds('check')
            then:
            result.assertTaskSkipped(":checkstyleMain")
    
            when:
            file("config/checkstyle/new-file.xml").touch()
            succeeds('check')
            then:
            result.assertTaskNotSkipped(":checkstyleMain")
        }
    
        @ToBeImplemented
        @Issue("GRADLE-3432")
        def "analyze bad resources"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. docs/de/docs/alternatives.md

        Dann hörte APIStar auf, als Server zu existieren, und Starlette wurde geschaffen, welches eine neue, bessere Grundlage für ein solches System bildete. Das war die finale Inspiration für die Entwicklung von **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top