Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,229 for longJar (0.24 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RemoteDependencyResolveConsoleIntegrationTest.groovy

            def metaData = server.expectConcurrentAndBlock(getM1Pom, getM2Pom)
            def getM1Jar = server.get(m1.artifact.path).sendSomeAndBlock(longJar(m1.artifact.file))
            def getM2Jar = server.get(m2.artifact.path).sendSomeAndBlock(longJar(m2.artifact.file))
            def jars = server.expectConcurrentAndBlock(getM1Jar, getM2Jar)
    
            when:
            executer.withTestConsoleAttached()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_undeprecated_v1.0.1.txt

    -- .info --
    {"Version":"v1.0.1"}
    -- .mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- go.mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- undeprecated.go --
    package undeprecated
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 316 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory.go

    	switch c.Type {
    	case storagebackend.StorageTypeETCD2:
    		return nil, nil, fmt.Errorf("%s is no longer a supported storage backend", c.Type)
    	case storagebackend.StorageTypeUnset, storagebackend.StorageTypeETCD3:
    		return newETCD3Storage(c, newFunc, newListFunc, resourcePrefix)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. pkg/util/tail/tail_test.go

    			max:           0,
    			longerThanMax: true,
    			expected:      "",
    		},
    		{
    			name:          "the file length is longer than max",
    			max:           1,
    			longerThanMax: true,
    			expected:      "a",
    		},
    		{
    			name:          "the file length is longer than max and contains newlines",
    			max:           blockSize,
    			longerThanMax: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ProjectDependency.java

        /**
         * {@inheritDoc}
         *
         * @deprecated This class will no longer implement {@link SelfResolvingDependency} in Gradle 9.0
         */
        @Override
        @Deprecated
        TaskDependency getBuildDependencies();
    
        /**
         * {@inheritDoc}
         *
         * @deprecated This class will no longer implement {@link SelfResolvingDependency} in Gradle 9.0
         */
        @Override
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_deprecate_install.txt

    stderr '^\t''go get'' is no longer supported outside a module.$'
    
    cp go.mod.orig go.mod
    
    # 'go get' inside a module with a non-main package does not print a message.
    # This will stop building in the future, but it's the command we want to use.
    go get rsc.io/quote
    ! stderr deprecated
    ! stderr 'no longer installs'
    cp go.mod.orig go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. src/time/tick.go

    // if efficiency was a concern, code should use NewTicker instead and
    // call [Ticker.Stop] when the ticker is no longer needed.
    // As of Go 1.23, the garbage collector can recover unreferenced
    // tickers, even if they haven't been stopped.
    // The Stop method is no longer necessary to help the garbage collector.
    // There is no longer any reason to prefer NewTicker when Tick will do.
    func Tick(d Duration) <-chan Time {
    	if d <= 0 {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // context is not cancelled first. The returned error will be from ctx.Err(), the condition's
    // err return value, or nil. If invoking condition takes longer than interval the next condition
    // will be invoked immediately. When using very short intervals, condition may be invoked multiple
    // times before a context cancellation is detected. If immediate is true, condition will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    On Windows, [EvalSymlinks] no longer evaluates mount points,
    which was a source of many inconsistencies and bugs.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Previous versions default to `winsymlink=0`.
    
    On Windows, [EvalSymlinks] no longer tries to normalize
    volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 545 bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

    }
    
    // ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.
    message ClusterRole {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Rules holds all the PolicyRules for this ClusterRole
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top