Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for suspicious (0.27 sec)

  1. pilot/pkg/xds/deltatest.go

    	if current == nil {
    		log.Debugf("ADS:%s: resources initialized", v3.GetShortType(w.TypeUrl))
    		return
    	}
    	if deltaRes == nil && deleted == nil && len(sotwRes) == 0 {
    		// TODO: it suspicious full is never nil - are there case where we should be deleting everything?
    		// Both SotW and Delta did not respond, nothing to compare
    		return
    	}
    	newByName := slices.GroupUnique(sotwRes, (*discovery.Resource).GetName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformUpstreamDependenciesResolver.java

            ResolvedComponentResult targetComponent = findComponent(value, componentIdentifier);
    
            if (targetComponent == null) {
                // TODO: This is very suspicious. We should always fail here.
                // `strict` was added because file dependencies' components are never included in the graph.
                // We should detect this earlier and return no dependencies there to avoid `strict`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    		msg := fmt.Sprintf("received record with version %x when expecting version %x", vers, expectedVers)
    		return c.in.setErrorLocked(c.newRecordHeaderError(nil, msg))
    	}
    	if !c.haveVers {
    		// First message, be extra suspicious: this might not be a TLS
    		// client. Bail out before reading a full 'body', if possible.
    		// The current max version is 3.3 so if the version is >= 16.0,
    		// it's probably not real.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// problems if we are using internal linking (for example, use of
    	// plugins, LTO, etc) by calling a helper routine that builds on
    	// the existing CGO flags allow-lists. If we see anything
    	// suspicious, emit a special token file "preferlinkext" (known to
    	// the linker) in the object file to signal the that it should not
    	// try to link internally and should revert to external linking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-61080`](https://youtrack.jetbrains.com/issue/KT-61080) Kapt: investigate suspicious check for KMutableMap.Entry in KaptTreeMaker
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    				}
    			}
    		}
    		if !change && !deadChange {
    			break
    		}
    		iters++
    		if (iters > itersLimit || debug >= 2) && change {
    			// We've done a suspiciously large number of rewrites (or we're in debug mode).
    			// As of Sep 2021, 90% of rewrites complete in 4 iterations or fewer
    			// and the maximum value encountered during make.bash is 12.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    		}
    		return nil
    	}
    	if f.NumSettings() > 100 || f.HasDuplicates() {
    		// This isn't actually in the spec, but hang up on
    		// suspiciously large settings frames or those with
    		// duplicate entries.
    		return sc.countError("settings_big_or_dups", http2ConnectionError(http2ErrCodeProtocol))
    	}
    	if err := f.ForeachSetting(sc.processSetting); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top