Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,099 for myHost (0.1 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

                "src/test/kotlin/test.kt",
                """
    
                import org.gradle.testfixtures.ProjectBuilder
                import org.junit.Test
                import org.gradle.kotlin.dsl.*
    
                class MyTest {
    
                    @Test
                    fun `my test`() {
                        ProjectBuilder.builder().build().run {
                            apply<MyPlugin>()
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. src/runtime/mksizeclasses.go

    		}
    		fmt.Fprintf(w, "// %9d  %4d  %12d\n", 1<<bits, bits, size)
    	}
    	fmt.Fprintf(w, "\n")
    }
    
    func maxObjsPerSpan(classes []class) int {
    	most := 0
    	for _, c := range classes[1:] {
    		n := c.npages * pageSize / c.size
    		most = max(most, n)
    	}
    	return most
    }
    
    func printClasses(w io.Writer, classes []class) {
    	fmt.Fprintln(w, "const (")
    	fmt.Fprintf(w, "minHeapAlign = %d\n", minHeapAlign)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/graph/GraphRenderer.java

        }
    
        /**
         * Starts visiting the children of the most recently visited node.
         */
        public void startChildren() {
            if (seenRootChildren) {
                prefix.append(lastChild ? "     " : "|    ");
            }
            seenRootChildren = true;
        }
    
        /**
         * Completes visiting the children of the node which most recently started visiting children.
         */
        public void completeChildren() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ResultsStore.java

        /**
         * Returns the performance experiments known to this store, in display order.
         */
        List<PerformanceExperiment> getPerformanceExperiments();
    
        /**
         * Returns the n most recent instances of the given test which are younger than the max age.
         *
         * This returns all the executions which are either from the channel or in the list of provided teamcity build ids.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/TaskOptionsSpec.groovy

            then:
            succeeds "--", "mytask", "--profile", "myvalue"
            output.contains "profile=myvalue"
            !output.contains("See the profiling report at")
        }
    
        def "task options apply to most recent task"() {
            when:
            buildScript """
                ${defineTaskWithProfileOption()}
    
                tasks.register('mytaskA', MyTask.class)
                tasks.register('mytaskB', MyTask.class)
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

    import javax.annotation.Nullable;
    import java.util.concurrent.TimeUnit;
    
    public interface DaemonConnection extends Stoppable {
        /**
         * Registers a handler for incoming client stdin. The handler is notified from at most one thread at a time.
         *
         * The following events trigger an end of input:
         * <ul>
         * <li>A {@link org.gradle.launcher.daemon.protocol.CloseInput} event received from the client.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/events/v1beta1/generated.proto

      // This field cannot be empty for new Events and it can have at most 128 characters.
      // +optional
      optional string reportingInstance = 5;
    
      // action is what action was taken/failed regarding to the regarding object. It is machine-readable.
      // This field can have at most 128 characters.
      // +optional
      optional string action = 6;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/events/v1/types_swagger_doc_generated.go

    	"action":                   "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field cannot be empty for new Events and it can have at most 128 characters.",
    	"reason":                   "reason is why the action was taken. It is human-readable. This field cannot be empty for new Events and it can have at most 128 characters.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1beta1/generated.proto

      // This field cannot be empty for new Events and it can have at most 128 characters.
      // +optional
      optional string reportingInstance = 5;
    
      // action is what action was taken/failed regarding to the regarding object. It is machine-readable.
      // This field can have at most 128 characters.
      // +optional
      optional string action = 6;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Cursor.java

    /**
     * A virtual console screen cursor. This class avoid complex screen position management.
     */
    public class Cursor {
        int col; // count from left of screen, 0 = left most
        int row; // count from bottom of screen, 0 = bottom most, 1 == 2nd from bottom
    
        @SuppressWarnings("ReferenceEquality")
        public void copyFrom(Cursor position) {
            if (position == this) {
                return;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top