Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,379 for place (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      Type type() const { return type_; }
    
      // Gets the name of the source file where the test part took place, or
      // NULL if it's unknown.
      const char* file_name() const {
        return file_name_.empty() ? NULL : file_name_.c_str();
      }
    
      // Gets the line in the source file where the test part took place,
      // or -1 if it's unknown.
      int line_number() const { return line_number_; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      Type type() const { return type_; }
    
      // Gets the name of the source file where the test part took place, or
      // NULL if it's unknown.
      const char* file_name() const {
        return file_name_.empty() ? NULL : file_name_.c_str();
      }
    
      // Gets the line in the source file where the test part took place,
      // or -1 if it's unknown.
      int line_number() const { return line_number_; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            }
            msg += ")";
            logger.debug(msg);
        }
    
        public void manageArtifactVersion(Artifact artifact, Artifact replacement) {
            // only show msg if a change is actually taking place
            if (!replacement.getVersion().equals(artifact.getVersion())) {
                String msg = indent + artifact + " (applying version: " + replacement.getVersion() + ")";
                logger.debug(msg);
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    Now we are engaged in a great Civil War, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we can not dedicate - we can not consecrate - we can not hallow - this ground. The brave men, living...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
Back to top