Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SELF (0.04 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    			(src.Config().Service != dst.Config().Service) &&
    			!dst.Config().HasSidecar() {
    			// Check original source, unless there is a waypoint in the path. For waypoint, we don't (yet?) propagate original src.
    			// Self call is also (temporarily) broken
    			// Sidecars lose the original src
    			opt.Check = check.And(opt.Check, OriginalSourceCheck(t, src))
    		}
    
    		// Non-HBONE clients will attempt to bypass the waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

         * find the containing binary expression and resolve that instead.
         *
         * However, if, say, `+=` resolves to `plusAssign`, then the LHS is self-contained. In this case we do not return the containing binary
         * expression so that the FIR element corresponding to the LHS is used directly.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    	// For the first merge, exclude predecessors that have not been seen yet.
    	// I.e., backedges.
    	for _, pred := range b.Preds {
    		if bl := blockLocs[pred.b.ID]; bl != nil && bl.everProcessed {
    			// crucially, a self-edge has bl != nil, but bl.everProcessed is false the first time.
    			preds = append(preds, pred.b)
    		}
    	}
    
    	locs.everProcessed = true
    
    	if state.loggingLevel > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    	if !dstOpts.NoAuditLog {
    		auditObjectErasureSet(ctx, dstObject, &er)
    	}
    
    	// This call shouldn't be used for anything other than metadata updates or adding self referential versions.
    	if !srcInfo.metadataOnly {
    		return oi, NotImplemented{}
    	}
    
    	if !dstOpts.NoLock {
    		lk := er.NewNSLock(dstBucket, dstObject)
    		lkctx, err := lk.GetLock(ctx, globalOperationTimeout)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top