Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,590 for myHost (0.15 sec)

  1. docs/en/docs/how-to/index.md

    # How To - Recipes
    
    Here you will see different recipes or "how to" guides for **several topics**.
    
    Most of these ideas would be more or less **independent**, and in most cases you should only need to study them if they apply directly to **your project**.
    
    If something seems interesting and useful to your project, go ahead and check it, but otherwise, you might probably just skip them.
    
    !!! tip
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 591 bytes
    - Viewed (0)
  2. cmd/metrics-realtime.go

    		} else {
    			stats := gr.ConnStats()
    			m.Aggregated.RPC = &stats
    		}
    	}
    	// Add types...
    
    	// ByHost is a shallow reference, so careful about sharing.
    	m.ByHost = map[string]madmin.Metrics{byHostName: m.Aggregated}
    	m.Hosts = append(m.Hosts, byHostName)
    
    	return m
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:16:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. ci/official/debug_tfci.sh

    # limitations under the License.
    # ==============================================================================
    # This script dumps some information about the environment. It's most useful
    # for verifying changes to the TFCI scripts system, and most users won't need
    # to interact with it at all.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    echo "==TFCI== env outside of tfrun:"
    env
    echo "==TFCI== env inside of tfrun:"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 01 19:54:25 UTC 2023
    - 1022 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRepositoryTest.kt

    import java.util.concurrent.TimeUnit
    
    import kotlin.coroutines.Continuation
    
    
    class KotlinBuildScriptModelRepositoryTest {
    
        @Test
        fun `cancels older requests before returning response to most recent request`() = runBlockingWithTimeout {
    
            // given:
            // Notice the project directory is never written to by the test so its path is immaterial
            val projectDir = File("/project-dir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

            withBuildScript(
                """
    
                task("test") {
                    doLast {
    
                        val myList = listOf(
                            "foo",
                            "bar", // trailing comma
                        )
    
                        print(myList)
                    }
                }
                """
            )
    
            assertThat(
                build("test", "-q").output,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top