Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for _this6 (0.31 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    +
    Set to `plain` to generate plain text only. This option disables all color and other rich output in the console output. This is the default when Gradle is _not_ attached to a terminal.
    +
    Set to `auto` (the default) to enable color and other rich output in the console output when the build process is attached to a console or to generate plain text only when not attached to a console. _This is the default when Gradle is attached to a terminal._
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    	}
    	if thisg.m.morebuf.g.ptr() != thisg.m.curg {
    		print("runtime: newstack called from g=", hex(thisg.m.morebuf.g), "\n"+"\tm=", thisg.m, " m->curg=", thisg.m.curg, " m->g0=", thisg.m.g0, " m->gsignal=", thisg.m.gsignal, "\n")
    		morebuf := thisg.m.morebuf
    		traceback(morebuf.pc, morebuf.sp, morebuf.lr, morebuf.g.ptr())
    		throw("runtime: wrong goroutine in newstack")
    	}
    
    	gp := thisg.m.curg
    
    	if thisg.m.curg.throwsplit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"data":           "Data contains the opaque data associated with this ResourceHandle. It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in. It is set at allocation time and...
    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. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessor.java

            DocumentationRegistry documentationRegistry
        ) {
            this.workerThreadRegistry = workerThreadRegistry;
            this.workerFactory = workerFactory;
            this.processorFactory = processorFactory;
            this.options = options;
            this.classpath = classpath;
            this.buildConfigAction = buildConfigAction;
            this.documentationRegistry = documentationRegistry;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            ignoredInFailingTestDetails.assertIgnored()
    
            def failingTestDetails = failingClassFile.testDetails('failed')
            failingTestDetails.assertDuration("1.000s")
            failingTestDetails.assertFailed()
    
            failingClassFile.assertHasFailure('failed', 'something failed\n\nthis is the failure\nat someClass\n')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"backoffLimit":            "Specifies the number of retries before marking this job failed. Defaults to 6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonGreeter.java

            return startupCommunication.readDiagnostics(lastLine);
        }
    
        private String prepareMessage(String output, List<String> startupArgs) {
            return DaemonMessages.UNABLE_TO_START_DAEMON +
                "\nThis problem might be caused by incorrect configuration of the daemon." +
                "\nFor example, an unrecognized jvm option is used." +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/instances.go

    	return i.Contains(t.Instances()...)
    }
    
    func (i Instances) Contains(instances ...Instance) bool {
    	for _, thatI := range instances {
    		found := false
    		for _, thisI := range i {
    			if thisI == thatI {
    				found = true
    				break
    			}
    		}
    		if !found {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

                        }
    
                        @TaskAction
                        void printValue() {
                            System.out.println("this.serializableSupplier.get() -> " + this.serializableSupplier.get());
                            System.out.println("this.nonSerializableSupplier.get() -> " + this.nonSerializableSupplier.get());
                        }
                    }
                """
            }
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    The word "interdependent" is vital, as you typically want to link the many modules together through a single build.
    
    Gradle supports this scenario through _multi-project_ builds.
    This is sometimes referred to as a multi-module project.
    Gradle refers to modules as subprojects.
    
    A multi-project build consists of one root project and one or more subprojects.
    
    [[sec:project_structure]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top