Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 234 for describeTo (0.36 sec)

  1. src/os/stat.go

    // If the file is a symbolic link, the returned FileInfo
    // describes the symbolic link. Lstat makes no attempt to follow the link.
    // If there is an error, it will be of type [*PathError].
    //
    // On Windows, if the file is a reparse point that is a surrogate for another
    // named entity (such as a symbolic link or mounted folder), the returned
    // FileInfo describes the reparse point, and makes no attempt to resolve it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 973 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactoryTest.groovy

            0 * _
        }
    
        private class NoopBuildCacheDescriber implements BuildCacheServiceFactory.Describer {
    
            @Override
            BuildCacheServiceFactory.Describer type(String type) { this }
    
            @Override
            BuildCacheServiceFactory.Describer config(String name, String value) { this }
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/embedded_protocol_buffers.h

    namespace tensorflow {
    namespace tfcompile {
    using absl::StatusOr;
    
    // Represents a set of protocol buffers embedded into an object file and
    // describes how to access them at runtime.
    struct EmbeddedProtocolBuffers {
      // Each instance CPPShim describes how to generate C++ code to instantiate a
      // protobuf instance from the corresponding static data emitted into the
      // object file.
      struct CPPShim {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/feature_request.md

    name: Feature request
    about: Suggest an idea to improve Istio
    
    ---
    (This is used to request new product features, please visit <https://github.com/istio/istio/discussions> for questions on using Istio)
    
    **Describe the feature request**
    
    **Describe alternatives you've considered**
    
    **Affected product area (please put an X in all that apply)**
    
    [ ] Ambient
    [ ] Docs
    [ ] Dual Stack
    [ ] Installation
    [ ] Networking
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:42:48 UTC 2024
    - 707 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactory.java

            this.cacheConfigurations = cacheConfigurations;
        }
    
        @Override
        public BuildCacheService createBuildCacheService(DirectoryBuildCache configuration, Describer describer) {
            Object cacheDirectory = configuration.getDirectory();
            File target;
            if (cacheDirectory != null) {
                target = resolver.resolve(cacheDirectory);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ArtifactHandler.java

         * @return The artifact.
         */
        PublishArtifact add(String configurationName, Object artifactNotation);
    
        /**
         * Adds an artifact to the given configuration.
         *
         * @param configurationName The name of the configuration.
         * @param artifactNotation The artifact notation, in one of the notations described above.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. pkg/kube/apimirror/probe.go

    	URISchemeHTTPS URIScheme = "HTTPS"
    )
    
    // HTTPHeader describes a custom header to be used in HTTP probes
    type HTTPHeader struct {
    	// The header field name
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// The header field value
    	Value string `json:"value" protobuf:"bytes,2,opt,name=value"`
    }
    
    // TCPSocketAction describes an action based on opening a socket
    type TCPSocketAction struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. hack/apidiff.sh

    # Give some information about what's happening. Failures from "git describe" are ignored
    # silently, that's optional information.
    describe () {
        local rev="$1"
        local descr
        echo -n "$rev"
        if descr=$(git describe --tags "${rev}" 2>/dev/null); then
            echo -n " (= ${descr})"
        fi
        echo
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ComponentSelectorParsers.java

            return BUILDER;
        }
    
        static class MapConverter extends MapNotationConverter<ComponentSelector> {
            @Override
            public void describe(DiagnosticsVisitor visitor) {
                visitor.example("Maps, e.g. [group: 'org.gradle', name:'gradle-core', version: '1.0'].");
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/diagnostics/DaemonStartupInfo.java

            return String.format("DaemonStartupInfo{pid=%s, uid=%s, address=%s, diagnostics=%s}", diagnostics.getPid(), uid, address, diagnostics);
        }
    
        public String describe() {
            return "Daemon uid: " + uid + " with diagnostics:\n"
                + diagnostics.describe();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top