Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 137 for paused (0.11 sec)

  1. 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)
  2. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

        ) {
            def doc = actualDocument as DeclarativeDocument
            def parsed = ParserKt.parse(expectedDocumentText)
            def languageTree = new DefaultLanguageTreeBuilder().build(
                parsed, new SourceIdentifier("test")
            )
            def expectedDocument = LanguageTreeToDomKt.toDocument(languageTree)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. 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)
  4. cluster/gce/gci/configure-kubeapiserver.sh

      params+=" --allow-privileged=true"
      params+=" --cloud-provider=${CLOUD_PROVIDER_FLAG:-external}"
      params+=" --client-ca-file=${CA_CERT_BUNDLE_PATH}"
    
      # params is passed by reference, so no "$"
      configure-etcd-params params
    
      params+=" --secure-port=443"
      params+=" --tls-cert-file=${APISERVER_SERVER_CERT_PATH}"
      params+=" --tls-private-key-file=${APISERVER_SERVER_KEY_PATH}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseException.java

            Throwable cause = causes.get(0);
            printWriter.print("Caused by: ");
            cause.printStackTrace(printWriter);
        }
    
        private void printMultiCauseStackTrace(PrintWriter printWriter) {
            for (int i = 0; i < causes.size(); i++) {
                Throwable cause = causes.get(i);
                printWriter.format("Cause %s: ", i + 1);
                cause.printStackTrace(printWriter);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/build.gradle.kts

        implementation(project(":serialization"))
        implementation(project(":testing-base"))
    
        implementation(libs.guava)
    
        compileOnly(libs.groovy) {
            because("some used APIs (e.g. FileTree.visit) provide methods taking Groovy closures which causes compile errors")
        }
    
        testImplementation(project(":resources"))
    
        integTestImplementation(project(":internal-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       to construct the sample instances. In case of tie, the candidate constructors or
       *       factories are tried one after another until one can be used to construct sample
       *       instances.
       *   <li>For the constructor or static factory method used to construct instances, it's checked
       *       that when equal parameters are passed, the result instance should also be equal; and vice
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       to construct the sample instances. In case of tie, the candidate constructors or
       *       factories are tried one after another until one can be used to construct sample
       *       instances.
       *   <li>For the constructor or static factory method used to construct instances, it's checked
       *       that when equal parameters are passed, the result instance should also be equal; and vice
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		return InboundBinding{}
    	}
    
    	// parse port
    	port := uint32(0)
    	if len(parts) == 2 {
    		parsed, err := strconv.ParseUint(parts[1], 10, 32)
    		if err != nil {
    			log.Warnf("invalid port %s for %s.", parts[1], constants.AmbientWaypointInboundBinding)
    		}
    		port = uint32(parsed)
    	}
    
    	return InboundBinding{
    		Port:     port,
    		Protocol: protocol,
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top