Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 339 for Whatever (0.24 sec)

  1. src/go/printer/testdata/slow.golden

    type Baz struct {
    	entries		map[int]interface{}
    	whatever	string
    }
    
    func newFoo() *Foo {
    	return &Foo{bar: &Bar{baz: &Baz{
    		entries: map[int]interface{}{
    			42:	&Foo{},
    			21:	&Bar{},
    			11:	&Baz{whatever: "it's just a test"}}}},
    		bang: &Bar{foo: []*Foo{
    			&Foo{bar: &Bar{baz: &Baz{
    				entries: map[int]interface{}{
    					43:	&Foo{},
    					22:	&Bar{},
    					13:	&Baz{whatever: "this is nuts"}}}},
    				bang: &Bar{foo: []*Foo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/slow.input

    type Baz struct {
            entries  map[int]interface{}
            whatever string
    }
    
    func newFoo() (*Foo) {
    return &Foo{bar: &Bar{ baz: &Baz{
    entries: map[int]interface{}{
    42: &Foo{},
    21: &Bar{},
    11: &Baz{ whatever: "it's just a test" }}}},
            bang: &Bar{foo: []*Foo{
    &Foo{bar: &Bar{ baz: &Baz{
    entries: map[int]interface{}{
    43: &Foo{},
    22: &Bar{},
    13: &Baz{ whatever: "this is nuts" }}}},
            bang: &Bar{foo: []*Foo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            where:
            input                    | className                 | methodName            | match
            ["FooTest"]              | "FooTest"                 | "whatever"            | true
            ["FooTest"]              | "fooTest"                 | "whatever"            | false
    
            ["com.foo.FooTest"]      | "com.foo.FooTest"         | "x"                   | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-plugin-performance/README.md

    locally, they will use the version of the build scan plugin in `../incoming/plugin.json`.  On CI, this file is populated as an artifact dependency from an upstream build.  To run locally, you will need to set this value whatever version of the build scan plugin you want to test with (whatever value is in source control is likely quite out of date).  Note also that when this value changes, you will need to clean and recreate the test projects in `templates.gradle`....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 716 bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    	b10.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    	b10.Event("GoStop", "whatever", testgen.NoStack)
    
    	// The running goroutine gets unblocked.
    	b11 := g1.Batch(trace.ThreadID(1), 0)
    	b11.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    	b11.Event("GoStart", trace.GoID(1), testgen.Seq(1))
    	b11.Event("GoStop", "whatever", testgen.NoStack)
    
    	g2 := t.Generation(2)
    
    	// Start running the goroutine, but later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/FinalizePropertiesTaskExecuter.java

    import org.gradle.api.internal.tasks.properties.TaskProperties;
    
    /**
     * Notifies the task properties of the start and completion of task execution, so they may finalize and cache whatever state is required to efficiently fingerprint inputs and outputs, apply validation or whatever.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 16 18:04:59 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/tests/go122-confuse-seq-across-generations.test

    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=12
    Strings
    String id=1
    	data="whatever"
    EventBatch gen=2 m=1 time=3 size=8
    ProcStatus dt=1 p=1 pstatus=1
    GoStart dt=1 g=1 g_seq=2
    EventBatch gen=2 m=0 time=5 size=17
    ProcStatus dt=1 p=0 pstatus=1
    GoStatus dt=1 g=1 m=0 gstatus=1
    GoStart dt=1 g=1 g_seq=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1018 bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/StreamsHandler.java

    import java.util.concurrent.Executor;
    
    public interface StreamsHandler extends Stoppable {
        /**
         * Collects whatever state is required the given process. Should not start work.
         */
        void connectStreams(Process process, String processName, Executor executor);
    
        /**
         * Starts reading/writing/whatever the process' streams. May block until the streams reach some particular state, e.g. indicate that the process has started successfully.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ProgramParserAnnotationErasureTest.kt

            val source = ProgramSource(
                "/src/fragment.gradle.kts",
                """
                // a comment
                @Suppress("unused_variable")
    
                /* more comments */
                @Suppress("whatever")
    
                plugins {
                  java
                }
                @Suppress("nothing_really")
                println("Stage 2")
                """.trimIndent()
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top