Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,530 for isStandard (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasonInternal.java

        /**
         * Returns true if any of the {@link #getDescriptions() descriptions} contains a custom description instead of the
         * standard ones.
         *
         * @return true if the standard description wasn't used
         */
        boolean hasCustomDescriptions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/testing/iotest/logger.go

    	} else {
    		log.Printf("%s %x", l.prefix, p[0:n])
    	}
    	return
    }
    
    // NewWriteLogger returns a writer that behaves like w except
    // that it logs (using [log.Printf]) each write to standard error,
    // printing the prefix and the hexadecimal data written.
    func NewWriteLogger(prefix string, w io.Writer) io.Writer {
    	return &writeLogger{prefix, w}
    }
    
    type readLogger struct {
    	prefix string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/DependencyInsightOutputNormalizerTest.groovy

        | org.gradle.usage               | java-api | java-api     |
        | org.gradle.dependency.bundling |          | external     |
        | org.gradle.jvm.environment     |          | standard-jvm |
        | org.gradle.jvm.version         |          | 8            |'''
    
            expect:
            normalizer.normalize(originalOutput, null) == '''
        | Attribute Name                 | Provided | Requested    |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top