Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 469 for nothings (0.27 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

        }
    
        def "reports task origin for lazily realized tasks"() {
            given:
            buildFile << """
                tasks.register('lazyTask') {
                    doLast { println 'nothing to see here' }
                }
            """
    
            when:
            runBuild('lazyTask')
    
            then:
            task(':lazyTask').originPlugin.displayName == "build.gradle"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/instantiate.go

    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    		if tparams.Len() == 0 {
    			return orig // nothing to do (minor optimization)
    		}
    
    		return check.newAliasInstance(pos, orig, targs, ctxt)
    
    	case *Signature:
    		assert(expanding == nil) // function instances cannot be reached from Named types
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/release/notes-template.md

    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    > HIGHLIGHT the use case or existing problem the feature solves
    > EXPLAIN how the new release addresses that problem or use case
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/runtime/trace.go

    	// Prevent sysmon from running any code that could generate events.
    	lock(&sched.sysmonlock)
    
    	// Grab the minimum page heap address. All Ps are stopped, so it's safe to read this since
    	// nothing can allocate heap memory.
    	trace.minPageHeapAddr = uint64(mheap_.pages.inUse.ranges[0].base.addr())
    
    	// Reset mSyscallID on all Ps while we have them stationary and the trace is disabled.
    	for _, pp := range allp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "no conventions, top-level property is set"        | ""                                 | setId("test")         | """id = test\nbar = bar"""
            "everything has convention and nothing set"        | setAll("convention", "convention") | ""                    | """id = convention\nbar = convention"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Tools to take immutable, comparable snapshots of files and other things"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
    
        api(libs.guava)
        api(libs.jsr305)
    
        implementation(libs.slf4jApi)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. pkg/controller/job/success_policy_test.go

    		},
    		"successPolicy is null": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 0}},
    		},
    		"any rules are nothing": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 0}},
    			successPolicy:          &batch.SuccessPolicy{Rules: []batch.SuccessPolicyRule{}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/cmd/internal/telemetry/telemetry.go

    import (
    	"flag"
    	"os"
    
    	"golang.org/x/telemetry"
    	"golang.org/x/telemetry/counter"
    )
    
    // Start opens the counter files for writing if telemetry is supported
    // on the current platform (and does nothing otherwise).
    func Start() {
    	telemetry.Start(telemetry.Config{
    		TelemetryDir: os.Getenv("TEST_TELEMETRY_DIR"),
    	})
    }
    
    // StartWithUpload opens the counter files for writing if telemetry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/infer.go

    	// was given, unification produced the type list [int, []C, *A]. We eliminate the
    	// remaining type parameters by substituting the type parameters in this type list
    	// until nothing changes anymore.
    	inferred = u.inferred(tparams)
    	if debug {
    		for i, targ := range targs {
    			assert(targ == nil || inferred[i] == targ)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		}
    		IncrementEnvoyFilterMetric(lp.Key(), Listener, true)
    		if lp.Operation == networking.EnvoyFilter_Patch_REMOVE {
    			lis.Name = ""
    			*listenersRemoved = true
    			// terminate the function here as we have nothing more do to for this listener
    			return
    		} else if lp.Operation == networking.EnvoyFilter_Patch_MERGE {
    			merge.Merge(lis, lp.Value)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top