Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,772 for isStandard (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    Many tools out there still use the standard output for logging.
    By default, Gradle redirects standard output to the `QUIET` log level and standard error to the `ERROR` level.
    This behavior is configurable.
    
    The `project` object provides a link:{javadocPath}/org/gradle/api/logging/LoggingManager.html[LoggingManager], which allows you to change the log levels that standard out or error are redirected to when your build script is evaluated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. cmd/crossdomain-xml-handler.go

    package cmd
    
    import "net/http"
    
    // Standard cross domain policy information located at https://s3.amazonaws.com/crossdomain.xml
    const crossDomainXML = `<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"><cross-domain-policy><allow-access-from domain="*" secure="false" /></cross-domain-policy>`
    
    // Standard path where an app would find cross domain policy information.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 06:42:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/DefaultLoggingManagerTest.groovy

            loggingManager.getLevel() == null
        }
    
        public void "can change standard out capture log level"() {
            when:
            loggingManager.captureStandardOutput(LogLevel.ERROR)
    
            then:
            loggingManager.getStandardOutputCaptureLevel() == LogLevel.ERROR
        }
    
        public void "can change standard error capture log level"() {
            when:
            loggingManager.captureStandardError(LogLevel.WARN)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/std_vendor.txt

    env GO111MODULE=off
    
    [!compiler:gc] skip
    
    # 'go list' should report imports from _test.go in the TestImports field.
    go list -f '{{.TestImports}}'
    stdout net/http # from .TestImports
    
    # 'go list' should report standard-vendored packages by path.
    go list -f '{{.Dir}}' vendor/golang.org/x/net/http2/hpack
    stdout $GOROOT[/\\]src[/\\]vendor
    
    # 'go list -test' should report vendored transitive dependencies of _test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 975 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"metadata": "Standard object metadata",
    	"spec":     "Spec describes where resources for the Pod are needed.",
    	"status":   "Status describes where resources for the Pod can be allocated.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/workloadclass.go

    	External    WorkloadClass = "external"
    	StatefulSet WorkloadClass = "statefulset"
    	Headless    WorkloadClass = "headless"
    	Captured    WorkloadClass = "captured"
    	Waypoint    WorkloadClass = "waypoint"
    	Standard    WorkloadClass = "standard"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/README.vendor

    copies of a package at different versions if the package is
    imported normally and vendored by the standard library.
    
    Vendored packages are internally renamed with a "vendor/" prefix
    to preserve the invariant that all packages have distinct paths.
    This is necessary to avoid compiler and linker conflicts. Adding
    a "vendor/" prefix also maintains the invariant that standard
    library packages begin with a dotless path element.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. internal/config/storageclass/legacy.go

    func SetStorageClass(s config.Config, cfg Config) {
    	if len(cfg.Standard.String()) == 0 && len(cfg.RRS.String()) == 0 {
    		// Do not enable storage-class if no settings found.
    		return
    	}
    	s[config.StorageClassSubSys][config.Default] = config.KVS{
    		config.KV{
    			Key:   ClassStandard,
    			Value: cfg.Standard.String(),
    		},
    		config.KV{
    			Key:   ClassRRS,
    			Value: cfg.RRS.String(),
    		},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. src/packaging/common/systemd/fess.service

    EnvironmentFile=-${packaging.env.file}
    
    User=${packaging.fess.user}
    Group=${packaging.fess.group}
    
    ExecStart=${packaging.fess.bin.dir}/fess
    
    # Connects standard output to /dev/null
    StandardOutput=null
    
    # Connects standard error to journal
    StandardError=journal
    
    # When a JVM receives a SIGTERM signal it exits with code 143
    SuccessExitStatus=143
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Rules holds all the PolicyRules for this Role
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top