Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for paused (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

            // It is possible that another task is being executed now and causes `task` to be configured.
            // In this case, we shouldn't attribute the error to the `task` alone, as it can be misleading,
            // and that usage can be benign. This is especially important when the currently running task is
            // marked as `notCompatibleWithConfigurationCache` - attributing the error to `task` will cause
            // the build to fail when it really shouldn't.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/options.go

    	KeyFile         string
    	TLSCipherSuites []string
    	CipherSuits     []uint16 // This is the parsed cipher suites
    }
    
    var (
    	PodNamespace = env.Register("POD_NAMESPACE", constants.IstioSystemNamespace, "").Get()
    	PodName      = env.Register("POD_NAME", "", "").Get()
    	JwtRule      = env.Register("JWT_RULE", "",
    		"The JWT rule used by istiod authentication").Get()
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/NonGradleCause.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.exceptions;
    
    /**
     * An exception that is not caused by a Gradle specific problem. e.g. a problem caused by a compilation error.
     * This serves as a marker interface.
     */
    public interface NonGradleCause {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 851 bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

        constructor(
            message: String,
            causes: List<Throwable>,
            summary: () -> String
        ) : super(
            { "$message\n${summary()}" },
            causes
        )
    
        internal
        constructor(
            causes: List<Throwable>,
            summary: () -> String
        ) : this(
            "Configuration cache problems found in this build.",
            causes,
            summary
        )
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/testdata/depBase/dep.go

    }
    
    func (d *Dep) Method() int {
    	// This code below causes various go.itab.* symbols to be generated in
    	// the shared library. Similar code in ../exe/exe.go results in
    	// exercising https://golang.org/issues/17594
    	reflect.TypeOf(os.Stdout).Elem()
    	return 10
    }
    
    func F() int {
    	defer func() {}()
    	return V
    }
    
    func H() {
    	// Issue 67635: deadcoded closures causes linker crash.
    	func() { F() }()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

         * The [entryPoint] is stored and checked in [leaveDynamicCall] later.
         */
        fun enterDynamicCall(entryPoint: Any)
    
        /**
         * End tracking a dynamic call.
         * The [entryPoint] should match the one passed to [enterDynamicCall].
         */
        fun leaveDynamicCall(entryPoint: Any)
    
        /**
         * Checks if the problem identified by [problemKey] has already been reported in the current dynamic call.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

     */
    public final class UncheckedException extends RuntimeException {
        private UncheckedException(Throwable cause) {
            super(cause);
        }
    
        private UncheckedException(String message, Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Note: always throws the failure in some form. The return value is to keep the compiler happy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

                withProblem("Build file 'build.gradle': line 11: invocation of 'Task.project' at execution time is unsupported.")
                withProblem("Build file 'build.gradle': line 4: execution of task ':offender' caused invocation of 'Task.project' in other task at execution time which is unsupported.")
            }
        }
    
        @Issue('https://github.com/gradle/gradle/issues/22522')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. internal/grid/stream.go

    // Done will return a channel that will be closed when the stream is done.
    // This mirrors context.Done().
    func (s *Stream) Done() <-chan struct{} {
    	return s.ctx.Done()
    }
    
    // Err will return the error that caused the stream to end.
    // This mirrors context.Err().
    func (s *Stream) Err() error {
    	return s.ctx.Err()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	DBMetricPollInterval time.Duration
    	// HealthcheckTimeout specifies the timeout used when checking health
    	HealthcheckTimeout time.Duration
    	// ReadycheckTimeout specifies the timeout used when checking readiness
    	ReadycheckTimeout time.Duration
    
    	LeaseManagerConfig etcd3.LeaseManagerConfig
    
    	// StorageObjectCountTracker is used to keep track of the total
    	// number of objects in the storage per resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top