Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for gretty (0.24 sec)

  1. src/runtime/tracetype.go

    	typName := toRType(typ).string()
    
    	// The maximum number of bytes required to hold the encoded type.
    	maxBytes := 1 + 5*traceBytesPerNumber + len(typName)
    
    	// Estimate the size of this record. This
    	// bound is pretty loose, but avoids counting
    	// lots of varint sizes.
    	//
    	// Add 1 because we might also write a traceAllocFreeTypesBatch byte.
    	var flushed bool
    	w, flushed = w.ensure(1 + maxBytes)
    	if flushed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // sequence number for e.g. a goroutine in the previous
    // generation. The parser should wait to find a GoStatus
    // event before advancing into the next generation at all.
    // It turns out this situation is pretty rare; the GoStatus
    // event almost always shows up first in practice. But it
    // can and did happen.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. pkg/scheduler/util/pod_resources.go

    // and that when scheduling regular pods, such pods will not see zero-request pods as
    // consuming no resources whatsoever. We chose these values to be similar to the
    // resources that we give to cluster addon pods (#10653). But they are pretty arbitrary.
    // As described in #11713, we use request instead of limit to deal with resource requirements.
    const (
    	// DefaultMilliCPURequest defines default milli cpu request number.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 01 06:25:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/registration/InstrumentationTransformRegisterer.java

                InstrumentationAnalysisTransform.class,
                spec -> {
                    spec.getFrom().attribute(INSTRUMENTED_ATTRIBUTE, NOT_INSTRUMENTED.getValue());
                    spec.getTo().attribute(INSTRUMENTED_ATTRIBUTE, ANALYZED_ARTIFACT.getValue());
                    spec.parameters(params -> {
                        params.getBuildService().set(service);
                        params.getContextId().set(contextId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/types_64bit.go

    // may observe operations that precede this operation to
    // occur after it, but no operation that occurs after it
    // on this thread can be observed to occur before it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uint64) LoadAcquire() uint64 {
    	return LoadAcq64(&u.value)
    }
    
    // StoreRelease is a partially unsynchronized version
    // of Store that relaxes ordering constraints. Other threads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractTypeScopeTest.kt

                }
    
                testServices.assertions.assertEqualsToTestDataFileSibling(scopeStringRepresentation)
                testServices.assertions.assertEqualsToTestDataFileSibling(signaturePretty, extension = ".pretty.txt")
    
                val actualNames = prettyPrint {
                    appendLine("${KaTypeScope::class.simpleName}:")
                    renderContainedNamesIfExists(typeScope)
                    appendLine()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsGroovyDSLIntegrationTest.groovy

                .addPluginWithPrintlnTask('greet', 'Hello from first plugin!', firstPluginId, "FirstPlugin")
                .publishAs("some", "artifact", pluginVersion, pluginPortal, executer)
                .allowAll()
            String secondPluginId = 'com.acme.greeter2'
            new PluginBuilder(file("greeter-second"))
                .addPluginWithPrintlnTask('greet2', 'Hello from second plugin!', secondPluginId, "SecondPlugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. testing/smoke-test/build.gradle.kts

            group = "Verification"
            testClassesDirs = smokeTestSourceSet.output.classesDirs
            classpath = smokeTestSourceSet.runtimeClasspath
            maxParallelForks = 1 // those tests are pretty expensive, we shouldn't execute them concurrently
            inputs.property("androidHomeIsSet", System.getenv("ANDROID_HOME") != null)
            inputs.property("androidSdkRootIsSet", System.getenv("ANDROID_SDK_ROOT") != null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/dynamic-resource-allocation/structured/namedresources/cel"
    )
    
    // These types and fields are all exported to allow logging them with
    // pretty-printed JSON.
    
    type Model struct {
    	Instances []InstanceAllocation
    }
    
    type InstanceAllocation struct {
    	Allocated bool
    	Instance  *resourceapi.NamedResourcesInstance
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/kotlin/buildSrc/src/main/kotlin/myproject.greeting.gradle.kts

    tasks.register<com.example.GreetingTask>("greet") {
        greeting = "Hello from 'myproject.greeting' plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 110 bytes
    - Viewed (0)
Back to top