Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 710 for nothings (0.15 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            def dep = new LocalComponentDependencyMetadata(Stub(ComponentSelector), Dependency.DEFAULT_CONFIGURATION, [] as List, [], false, false, true, false, false, null)
            def conf = defaultConfiguration(attributes(key: 'nothing'))
            toComponent.getCandidatesForGraphVariantSelection().variants.addAll(conf)
            attributesSchema.attribute(Attribute.of('key', String))
            attributesSchema.attribute(Attribute.of('will', String))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

            //
            // The request has not set any local or remote repositories as the system scoped dependency being resolved
            // should only
            // give us the dependency off the disk and nothing more.
            //
            request = new ArtifactResolutionRequest()
                    .setArtifact(artifact)
                    .setResolveRoot(true)
                    .setResolveTransitively(true);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

            private
            fun illegalState(): Nothing =
                throw IllegalStateException("Operation is not valid in ${javaClass.simpleName} state.")
    
            class Idle(
                private val onFirstDiagnostic: (kind: DiagnosticKind, problem: PropertyProblem) -> State
            ) : State() {
    
                /**
                 * There's nothing to write, return null.
                 */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientProvidedPhasedActionRunner.java

        }
    
        @Override
        public Result run(BuildAction action, BuildTreeLifecycleController buildController) {
            if (!(action instanceof ClientProvidedPhasedAction)) {
                return Result.nothing();
            }
    
            ClientProvidedPhasedAction clientProvidedPhasedAction = (ClientProvidedPhasedAction) action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

                return from(!"false".equalsIgnoreCase(value));
            }
        }
    
        /**
         * Initializes the native services to use the given user home directory to store native libs and other resources. Does nothing if already initialized.
         *
         * Initializes all the services needed for the Gradle daemon.
         */
        public static void initializeOnDaemon(File userHomeDir, NativeServicesMode mode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. pkg/controller/deployment/deployment_controller_test.go

    	rs2 := newReplicaSet(d2, "rs2", 1)
    
    	f.dLister = append(f.dLister, d1, d2)
    	f.objects = append(f.objects, d1, d2, rs1, rs2)
    
    	// Create the fixture but don't start it,
    	// so nothing happens in the background.
    	dc, _, err := f.newController(ctx)
    	if err != nil {
    		t.Fatalf("error creating Deployment controller: %v", err)
    	}
    
    	dc.addReplicaSet(klog.FromContext(ctx), rs1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

                import org.gradle.workers.*
                abstract class MyWorkerAction implements WorkAction<WorkParameters.None>{
                    @Override public void execute() {
                        // Do nothing
                    }
                }
                task runInWorker {
                    doLast {
                        def workerExecutor = services.get(WorkerExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/aggregator.go

    	return map[schema.GroupVersion]APIServicePriority{
    		{Group: "", Version: "v1"}: {Group: 18000, Version: 1},
    		// to my knowledge, nothing below here collides
    		{Group: "events.k8s.io", Version: "v1"}:                      {Group: 17750, Version: 15},
    		{Group: "events.k8s.io", Version: "v1beta1"}:                 {Group: 17750, Version: 5},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/runtime/tracestring.go

    	// Store back buf in case it was updated during ensure.
    	t.buf = w.traceBuf
    	unlock(&t.lock)
    }
    
    // reset clears the string table and flushes any buffers it has.
    //
    // Must be called only once the caller is certain nothing else will be
    // added to this table.
    func (t *traceStringTable) reset(gen uintptr) {
    	if t.buf != nil {
    		systemstack(func() {
    			lock(&trace.lock)
    			traceBufFlush(t.buf, gen)
    			unlock(&trace.lock)
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsageSource.ir.txt

                      VALUE_PARAMETER name:it index:0 type:kotlin.Int
                      BLOCK_BODY
                        RETURN type=kotlin.Nothing from='local final fun <anonymous> (it: kotlin.Int): kotlin.Int declared in <root>.CodeFragment.run'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top