Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for describeTo (0.2 sec)

  1. releasenotes/notes/49700.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // AdmissionReview describes an admission review request/response.
    type AdmissionReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// Request describes the attributes for the admission request.
    	// +optional
    	Request *AdmissionRequest `json:"request,omitempty" protobuf:"bytes,1,opt,name=request"`
    	// Response describes the attributes for the admission response.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/os/types.go

    // File represents an open file descriptor.
    //
    // The methods of File are safe for concurrent use.
    type File struct {
    	*file // os specific
    }
    
    // A FileInfo describes a file and is returned by [Stat] and [Lstat].
    type FileInfo = fs.FileInfo
    
    // A FileMode represents a file's mode and permission bits.
    // The bits have the same definition on all systems, so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    // +k8s:deepcopy-gen=true
    
    // ValidationExtensions contains the Kubernetes OpenAPI v3 extensions that are
    // used for validation rather than structure.
    type ValidationExtensions struct {
    	// x-kubernetes-validations describes a list of validation rules for expression validation.
    	// Use the v1 struct since this gets serialized as an extension.
    	XValidations apiextensionsv1.ValidationRules
    }
    
    // +k8s:deepcopy-gen=true
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonDiagnosticsTest.groovy

            def diagnostics = new DaemonDiagnostics(new File("does not exist"), 123)
    
            when:
            def description = diagnostics.describe()
    
            then:
            noExceptionThrown()
            description.contains("Unable to read from the daemon log file")
        }
    
        def "can describe itself"() {
            given:
            def log = temp.file("foo.log")
            log << "hey joe!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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