Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for gotPings (0.31 sec)

  1. cmd/kubeadm/app/cmd/config_test.go

    			}
    
    			gotKinds := []string{}
    			for gvk := range gvkmap {
    				gotKinds = append(gotKinds, gvk.Kind)
    			}
    
    			sort.Strings(gotKinds)
    
    			if !reflect.DeepEqual(gotKinds, test.expectedKinds) {
    				t.Fatalf("kinds not matching:\n\texpectedKinds: %v\n\tgotKinds: %v\n", test.expectedKinds, gotKinds)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/providers/services/kotlin/build.gradle.kts

        }
    }
    
    abstract class MyWorkerTask
    @Inject constructor(private var workerExecutor: WorkerExecutor) : DefaultTask() {
        @get:Input
        abstract val booleanFlag: Property<Boolean>
        @TaskAction
        fun doThings() {
            workerExecutor.noIsolation().submit(MyWorkAction::class.java) {}
        }
    }
    
    tasks.register("myWorkTask", MyWorkerTask::class) {}
    // end::worker-executor[]
    
    // tag::file-system[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

                }
            });
    
            spec.setSourceFiles(ImmutableSet.copyOf(filtered));
        }
    
        private void resolveNonStringsInCompilerArgs(GroovyJavaJointCompileSpec spec) {
            // in particular, this is about GStrings
            spec.getCompileOptions().setCompilerArgs(CollectionUtils.toStringList(spec.getCompileOptions().getCompilerArgs()));
        }
    
        private void logSourceFiles(GroovyJavaJointCompileSpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

    abstract class MyWorkerTask extends DefaultTask {
        @Input
        abstract Property<Boolean> getBooleanFlag()
    
        @Inject
        abstract WorkerExecutor getWorkerExecutor()
    
        @TaskAction
        void doThings() {
            workerExecutor.noIsolation().submit(MyWorkAction) {}
        }
    }
    
    tasks.register("myWorkTask", MyWorkerTask) {}
    // end::worker-executor[]
    
    // tag::file-system[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

        }
    
    
        /*
         * Groovy manipulates the JVM to let GString extend String.
         * Whenever we have a Set or Map containing Strings, it might also
         * contain GStrings. This breaks deserialization on the client.
         * This method forces GString to String conversion.
         */
        private static String convertGString(CharSequence original) {
            return original.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            failure.assertHasCause("Cannot fingerprint input property 'b': value 'xxx' cannot be serialized.")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "deals gracefully with not serializable contents of GStrings"() {
            buildFile << """
                task foo {
                    inputs.property "a", "hello \${new Foo()}"
                    outputs.file "foo.txt"
                    doLast { file("foo.txt") << "" }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

        }
    
        def "reports build logic reading environment variables with getenv(String) using GString parameters"() {
            // Note that the map returned from System.getenv() doesn't support GStrings as keys, so there is no point in testing it.
            buildFile << '''
                def ci = "ci"
                def value = "value"
                println "CI1 = " + System.getenv("${ci.toUpperCase()}1")
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ppc64/ssa.go

    		// and used as the new base register and the offset field in the instruction
    		// can be set to zero.
    
    		// This same problem can happen with gostrings since the final offset is not
    		// known yet, but could be unaligned after the relocation is resolved.
    		// So gostrings are handled the same way.
    
    		// This allows the MOVDload and MOVWload to be generated in more cases and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais.go

    // See Ge Nong, Sen Zhang, and Wai Hong Chen,
    // "Two Efficient Algorithms for Linear Time Suffix Array Construction",
    // especially section 3 (https://ieeexplore.ieee.org/document/5582081).
    // See also http://zork.net/~st/jottings/sais.html.
    //
    // With optimizations inspired by Yuta Mori's sais-lite
    // (https://sites.google.com/site/yuta256/sais).
    //
    // And with other new optimizations.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. src/fmt/fmt_test.go

    }
    
    type G int
    
    func (g G) GoString() string {
    	return Sprintf("GoString(%d)", int(g))
    }
    
    type S struct {
    	F F // a struct field that Formats
    	G G // a struct field that GoStrings
    }
    
    type SI struct {
    	I any
    }
    
    // P is a type with a String method with pointer receiver for testing %p.
    type P int
    
    var pValue P
    
    func (p *P) String() string {
    	return "String(p)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top