Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,567 for repoId (0.23 sec)

  1. platforms/jvm/plugins-test-report-aggregation/src/main/resources/META-INF/gradle-plugins/org.gradle.test-report-aggregation.properties

    Tom Tresansky <******@****.***> 1696971232 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 20:53:52 UTC 2023
    - 72 bytes
    - Viewed (0)
  2. releasenotes/notes/drop-reload-sidecar-ignore-port.yaml

    John Howard <******@****.***> 1682567498 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 03:51:38 UTC 2023
    - 154 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultMavenArtifactRepositoryTest.groovy

            repository.url = 'repo-dir'
            repository.artifactUrls('repo1', 'repo2')
    
            when:
            def repo = repository.createResolver()
    
            then:
            repo instanceof MavenResolver
            repo.root == uri
            repo.artifactPatterns.size() == 3
            repo.artifactPatterns.any { it.startsWith uri.toString() }
            repo.artifactPatterns.any { it.startsWith uri1.toString() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. src/log/slog/doc.go

    means that modifying a simple copy of a Record (e.g. by calling
    [Record.Add] or [Record.AddAttrs] to add attributes)
    may have unexpected effects on the original.
    Before modifying a Record, use [Record.Clone] to
    create a copy that shares no state with the original,
    or create a new Record with [NewRecord]
    and build up its Attrs by traversing the old ones with [Record.Attrs].
    
    # Performance considerations
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/go/types/assignments.go

    func (check *Checker) returnError(at positioner, lhs []*Var, rhs []*operand) {
    	l, r := len(lhs), len(rhs)
    	qualifier := "not enough"
    	if r > l {
    		at = rhs[l] // report at first extra value
    		qualifier = "too many"
    	} else if r > 0 {
    		at = rhs[r-1] // report at last value
    	}
    	err := check.newError(WrongResultCount)
    	err.addf(at, "%s return values", qualifier)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/assignments.go

    }
    
    func (check *Checker) returnError(at poser, lhs []*Var, rhs []*operand) {
    	l, r := len(lhs), len(rhs)
    	qualifier := "not enough"
    	if r > l {
    		at = rhs[l] // report at first extra value
    		qualifier = "too many"
    	} else if r > 0 {
    		at = rhs[r-1] // report at last value
    	}
    	err := check.newError(WrongResultCount)
    	err.addf(at, "%s return values", qualifier)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. pkg/kubelet/images/image_manager.go

    }
    
    // imageManager provides the functionalities for image pulling.
    type imageManager struct {
    	recorder     record.EventRecorder
    	imageService kubecontainer.ImageService
    	backOff      *flowcontrol.Backoff
    	// It will check the presence of the image, and report the 'image pulling', image pulled' events correspondingly.
    	puller imagePuller
    
    	podPullingTimeRecorder ImagePodPullingTimeRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_sum_issue56222.txt

    stdout 1.18
    
    
    # Even at go 1.20 or earlier, 'go mod tidy' shouldn't need go.mod files or
    # checksums that it won't record.
    
    go mod tidy -go=1.20
    go clean -modcache  # Remove checksums from the module cache, so that only go.sum is used.
    
    # Issue 60667: 'go list' without -mod=mod shouldn't report the checksums as
    # dirty either.
    go list -m -u all
    
    env OLDSUMDB=$GOSUMDB
    env GOSUMDB=bad
    go mod tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 13:58:58 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	name       string         // name of accepted verifier
    	verifiers  note.Verifiers // accepted verifiers (just one, but Verifiers for note.Open)
    	tileReader tileReader
    	tileHeight int
    	nosumdb    string
    
    	record    parCache // cache of record lookup, keyed by path@vers
    	tileCache parCache // cache of c.readTile, keyed by tile
    
    	latestMu  sync.Mutex
    	latest    tlog.Tree // latest known tree head
    	latestMsg []byte    // encoded signed note for latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. src/go/types/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.2K bytes
    - Viewed (0)
Back to top