Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 851 for Listed (0.1 sec)

  1. src/cmd/go/testdata/script/mod_vendor_build.txt

    env GO111MODULE=on
    [short] skip
    
    # Populate go.mod and go.sum.
    go mod tidy
    
    # initial conditions: using sampler v1.3.0, not listed in go.mod.
    go list -deps
    stdout rsc.io/sampler
    ! grep 'rsc.io/sampler v1.3.0' go.mod
    
    # update to v1.3.1, now indirect in go.mod.
    go get rsc.io/sampler@v1.3.1
    grep 'rsc.io/sampler v1.3.1 // indirect' go.mod
    cp go.mod go.mod.good
    
    # vendoring can but should not need to make changes.
    go mod vendor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 931 bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/StandardSystemProperty.java

       *
       * <ul>
       *   <li>{@link #JAVA_EXT_DIRS} was deprecated in Java 8 and removed in Java 9. We have not
       *       confirmed whether it is available under older versions.
       *   <li>{@link #JAVA_COMPILER}, while still listed as required as of Java 15, is typically not
       *       available even under older version.
       *   <li>Any property may be cleared through APIs like {@link System#clearProperty}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperUpgradeIntegrationTest.groovy

            failure.assertHasCause("'$badVersion' is not a valid Gradle version string (examples: '1.0', '1.0-rc-1')")
            failure.assertHasResolution("Specify a valid Gradle release listed on https://gradle.org/releases/.")
            failure.assertHasResolution("Use one of the following dynamic version specifications: 'latest', 'release-candidate', 'release-nightly', 'nightly'.")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/builtin.go

    import "internal/buildcfg"
    
    // Builtin (compiler-generated) function references appear
    // frequently. We assign special indices for them, so they
    // don't need to be referenced by name.
    
    // NBuiltin returns the number of listed builtin
    // symbols.
    func NBuiltin() int {
    	return len(builtins)
    }
    
    // BuiltinName returns the name and ABI of the i-th
    // builtin symbol.
    func BuiltinName(i int) (string, int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 22 13:50:24 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. hack/verify-import-aliases.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script verifies that all the imports have our preferred alias(es). The
    # preferred aliases for imports are listed in `hack/.import-aliases`.
    # Usage: `hack/verify-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/Problem.java

         * The exception that caused the problem.
         */
        @Nullable
        RuntimeException getException();
    
        /**
         * Additional data attached to the problem.
         * <p>
         * The supported types are listed on {@link AdditionalData}.
         */
        @Nullable
        AdditionalData getAdditionalData();
    
        /**
         * Returns a problem builder with fields initialized with values from this instance.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/fields/fields.go

    	// Get returns the value for the provided field.
    	Get(field string) (value string)
    }
    
    // Set is a map of field:value. It implements Fields.
    type Set map[string]string
    
    // String returns all fields listed as a human readable string.
    // Conveniently, exactly the format that ParseSelector takes.
    func (ls Set) String() string {
    	selector := make([]string, 0, len(ls))
    	for key, value := range ls {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 19 14:50:16 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_constraints.txt

    go list -tags=extra -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout '^empty.go extra.go $'
    go list -tags=extra -f '{{range .Imports}}{{.}} {{end}}'
    stdout '^extra $'
    
    # Packages that require a tag should not be listed unless the tag is on.
    ! go list ./tagonly
    go list -tags=extra ./tagonly
    stdout m/tagonly
    
    -- go.mod --
    module m
    
    go 1.13
    
    -- empty.go --
    package p
    
    -- extra.go --
    // +build extra
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 04 23:54:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. releasenotes/notes/protocol-detection-timeout.yaml

        - Properly configured "server first" protocols will no longer have an extra 5s latency on each connection
        - Improperly configured "server first" protocols will experience connection timeouts. Please ensure you follow the steps listed in [Server First Protocols](https://preliminary.istio.io/latest/docs/ops/configuration/traffic-management/protocol-selection/#server-first-protocols)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/isolated/IsolationSchemeTest.groovy

            then:
            result2.is(service)
    
            where:
            serviceType << [ExecOperations, FileSystemOperations, ObjectFactory, ProviderFactory]
        }
    
        def "does not expose white-listed service when it is not available in backing registry"() {
            def allServices = Mock(ServiceLookup)
            def params = Stub(SomeParams)
            _ * allServices.find(serviceType) >> null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 19:49:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top