Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,906 for repoId (0.37 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

            expect:
            repo.module('org', 'leaf1').publish()
            repo.module('org', 'leaf2').publish()
            repo.module('org', 'leaf3').publish()
            repo.module('org', 'leaf4').publish()
    
            repo.module('org', 'middle1').dependsOnModules("leaf1", "leaf2").publish()
            repo.module('org', 'middle2').dependsOnModules("leaf3", "leaf4").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/initorder.go

    		if n.ndeps > 0 {
    			cycle := findPath(check.objMap, n.obj, n.obj, make(map[Object]bool))
    			// If n.obj is not part of the cycle (e.g., n.obj->b->c->d->c),
    			// cycle will be nil. Don't report anything in that case since
    			// the cycle is reported when the algorithm gets to an object
    			// in the cycle.
    			// Furthermore, once an object in the cycle is encountered,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/go/types/initorder.go

    		if n.ndeps > 0 {
    			cycle := findPath(check.objMap, n.obj, n.obj, make(map[Object]bool))
    			// If n.obj is not part of the cycle (e.g., n.obj->b->c->d->c),
    			// cycle will be nil. Don't report anything in that case since
    			// the cycle is reported when the algorithm gets to an object
    			// in the cycle.
    			// Furthermore, once an object in the cycle is encountered,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	cyclesLost int64        // contention for which we weren't able to record a call stack
    	disabled   bool         // attribute all time to "lost"
    }
    
    func (prof *mLockProfile) recordLock(cycles int64, l *mutex) {
    	if cycles <= 0 {
    		return
    	}
    
    	if prof.disabled {
    		// We're experiencing contention while attempting to report contention.
    		// Make a note of its magnitude, but don't allow it to be the sole cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/builtins.go

    		}
    
    		// TODO(gri) Should we pass x.typ instead of base (and have indirect report if derefStructPtr indirected)?
    		check.recordSelection(selx, FieldVal, base, obj, index, false)
    
    		// record the selector expression (was bug - go.dev/issue/47895)
    		{
    			mode := value
    			if x.mode == variable || indirect {
    				mode = variable
    			}
    			check.record(&operand{mode, selx, obj.Type(), nil, 0})
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/project_report_plugin.adoc

    We plan to add much more to the existing reports and create additional ones in future releases of Gradle.
    
    
    [[sec:project_reports_usage]]
    == Usage
    
    To use the Project report plugin, include the following in your build script:
    
    [source,groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    		ac.Event.Level = auditinternal.LevelMetadata
    
    		record.resp, record.ok, record.err = a.authenticator.AuthenticateToken(ctx, token)
    		record.annotations = ac.Event.Annotations
    		record.warnings = recorder.extractWarnings()
    
    		if !a.cacheErrs && record.err != nil {
    			return record, nil
    		}
    
    		switch {
    		case record.ok && a.successTTL > 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-operations/src/testFixtures/groovy/org/gradle/internal/operations/TestBuildOperationRunner.java

        private static class TestBuildOperationContext implements BuildOperationContext {
    
            private final Log.Record record;
    
            public TestBuildOperationContext(Log.Record record) {
                this.record = record;
            }
    
            @Override
            public void failed(@Nullable Throwable failure) {
                this.record.failure = failure;
            }
    
            @Override
            public void setResult(@Nullable Object result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/labels.go

    				if alt := all.Insert(lbl); alt != nil {
    					err := check.newError(DuplicateLabel)
    					err.soft = true
    					err.addf(lbl.pos, "label %s already declared", name)
    					err.addAltDecl(alt)
    					err.report()
    					// ok to continue
    				} else {
    					b.insert(s)
    					check.recordDef(s.Label, lbl)
    				}
    				// resolve matching forward jumps and remove them from fwdJumps
    				i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/attributes.go

    	return record.subresource
    }
    
    func (record *attributesRecord) GetOperation() Operation {
    	return record.operation
    }
    
    func (record *attributesRecord) GetOperationOptions() runtime.Object {
    	return record.options
    }
    
    func (record *attributesRecord) IsDryRun() bool {
    	return record.dryRun
    }
    
    func (record *attributesRecord) GetObject() runtime.Object {
    	return record.object
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 07 17:53:14 UTC 2019
    - 6.2K bytes
    - Viewed (0)
Back to top