Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,797 for place (0.27 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

         *
         * <ul>
         *     <li>a directory, then its contents are removed recursively,</li>
         *     <li>a file or a symlink, then it is deleted and a directory is created in its place,</li>
         *     <li>non-existent, then a directory is created in its place.</li>
         * </ul>
         *
         * Does not follow symlinks.
         *
         * @return {@code true} if anything was removed, {@code false} if no change was
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/sort/sort.go

    // only logarithmic additional stack space. They perform well if compared
    // experimentally to other stable in-place sorting algorithms.
    //
    // Remarks on other algorithms evaluated:
    //  - GCC's 4.6.3 stable_sort with merge_without_buffer from libstdc++:
    //    Not faster.
    //  - GCC's __rotate for block rotations: Not faster.
    //  - "Practical in-place mergesort" from  Jyrki Katajainen, Tomi A. Pasanen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. pkg/bootstrap/platform/platform.go

    // limitations under the License.
    
    package platform
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    )
    
    const (
    	KubernetesServiceHost = "KUBERNETES_SERVICE_HOST"
    )
    
    // Environment provides information for the platform on which the bootstrapping
    // is taking place.
    type Environment interface {
    	// Metadata returns a collection of environmental metadata, structured
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 07 20:19:01 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. releasenotes/notes/21715.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 21715
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 11 16:38:26 UTC 2020
    - 240 bytes
    - Viewed (0)
  5. src/cmd/go/internal/lockedfile/internal/filelock/filelock.go

    	Fd() uintptr
    
    	// Stat returns the FileInfo structure describing file.
    	Stat() (fs.FileInfo, error)
    }
    
    // Lock places an advisory write lock on the file, blocking until it can be
    // locked.
    //
    // If Lock returns nil, no other process will be able to place a read or write
    // lock on the file until this process exits, closes f, or calls Unlock on it.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/internal.go

    // packages in the text repository.
    package internal // import "golang.org/x/text/internal"
    
    import (
    	"sort"
    
    	"golang.org/x/text/language"
    )
    
    // SortTags sorts tags in place.
    func SortTags(tags []language.Tag) {
    	sort.Sort(sorter(tags))
    }
    
    type sorter []language.Tag
    
    func (s sorter) Len() int {
    	return len(s)
    }
    
    func (s sorter) Swap(i, j int) {
    	s[i], s[j] = s[j], s[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <suppress checks="JavadocPackage"
                  files=".*[/\\]ide-native[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]plugins[/\\]ide[/\\]api[/\\][^/\\]+"/>
    
        <!-- These packages are duplicated in platform-native from language-native, don't require a package-info.java in each place -->
        <suppress checks="JavadocPackage"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. releasenotes/notes/revision-tag-command.yaml

        **Added** `istioctl experimental revision tag` command group. Revision tags act as aliases for
        control plane revisions. Users can label their namespaces with a revision tag rather than pointing them
        directly at a revision and selectively decide the granularity of their namespace labels. This makes it possible
        to perform upgrades with the ease of in-place upgrades while having the safety revision-based upgrades
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 16 06:17:37 UTC 2021
    - 532 bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

      for (Node* n : graph_->nodes()) {
        // We rely on the immutability of Tensors to safely clone Const operations.
        // However, "in place" ops do not respect the immutability of Tensors so we
        // avoid this transformation when such ops are present in the graph.
        //
        // In-place operations are problematic because they break the semantic
        // illusion that tensorflow::Tensor instances are immutable.  For instance
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeDetails.java

         */
        String getMergeValue();
    
        /**
         * Returns the value for the key of the manifest after the merge takes place. By default this is the value
         * of the source for the merge.
         */
        String getValue();
    
        /**
         * Set's the value for the key of the manifest after the merge takes place.
         */
        void setValue(String value);
    
        /**
         * Excludes this key from being in the manifest after the merge.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top