Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for rnews (0.05 sec)

  1. cmd/dependencyverifier/dependencyverifier.go

    			// disappeared entirely
    			log.Printf("Good news! Unwanted dependency %q is no longer referenced. Remove status.unwantedReferences[%q] in %s to ensure it doesn't get reintroduced.", expectedRef, expectedRef, dependenciesJSONPath)
    			needUpdate = true
    			continue
    		}
    		removedReferences, unwantedReferences := difference(expectedFrom, actualFrom)
    		if len(removedReferences) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/main/resources/footer.html

                        <li itemprop="name"><a href="/javadoc/" itemprop="url">Javadoc</a></li>
                    </ul>
                </div>
                <div class="site-footer__link-group">
                    <header><strong>News</strong></header>
                    <ul class="site-footer__links-list">
                        <li itemprop="name"><a href="https://blog.gradle.org/" itemprop="url">Blog</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/vendor.go

    		for _, r := range replaces {
    			if seenrep[r.Old] {
    				continue // Don't print the same error more than once
    			}
    			seenrep[r.Old] = true
    			rNew, modRoot, replacementSource := replacementFrom(r.Old)
    			rNewCanonical := canonicalizeReplacePath(rNew, modRoot)
    			vr := vendorMeta[r.Old].Replacement
    			if vr == (module.Version{}) {
    				if rNewCanonical == (module.Version{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. test/typeparam/slices.go

    // a separate copy for each type.
    func _Append[T any](s []T, t ...T) []T {
    	lens := len(s)
    	tot := lens + len(t)
    	if tot <= cap(s) {
    		s = s[:tot]
    	} else {
    		news := make([]T, tot, tot+tot/2)
    		_Copy(news, s)
    		s = news
    	}
    	_Copy(s[lens:tot], t)
    	return s
    }
    
    // _Copy copies values from t to s, stopping when either slice is full,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. src/encoding/gob/type_test.go

    		t.Errorf("array printed as %q; expected %q", str, expected)
    	}
    }
    
    func TestSliceType(t *testing.T) {
    	var s []int
    	sint := getTypeUnlocked("slice", reflect.TypeOf(s))
    	var news []int
    	newsint := getTypeUnlocked("slice1", reflect.TypeOf(news))
    	if sint != newsint {
    		t.Errorf("second registration of []int creates new type")
    	}
    	var b []bool
    	sbool := getTypeUnlocked("", reflect.TypeOf(b))
    	if sbool == sint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. cmd/license-update.go

    			}
    
    			// Reset the timer for next cycle.
    			licenseUpdateTimer.Reset(licUpdateCycle)
    		}
    	}
    }
    
    func performLicenseUpdate(ctx context.Context, objectAPI ObjectLayer) {
    	// the subnet license renewal api renews the license only
    	// if required e.g. when it is expiring soon
    	url := globalSubnetConfig.BaseURL + licRenewPath
    
    	resp, err := globalSubnetConfig.Post(url, nil)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader_test.go

    	// Set values.
    	ldr.SetSymValue(es2, 7)
    	ldr.SetSymValue(es3, 1)
    	ldr.SetSymValue(es4, 13)
    	ldr.SetSymValue(es5, 101)
    	ldr.SetSymValue(es6, 3)
    
    	// Sort
    	news := ldr.SortSub(es1)
    	if news != es3 {
    		t.Errorf("ldr.SortSub leader got %d wanted %d", news, es3)
    	}
    	pv := int64(-1)
    	count := 0
    	for ss := ldr.SubSym(es1); ss != 0; ss = ldr.SubSym(ss) {
    		v := ldr.SymValue(ss)
    		if v <= pv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/vendor.go

    						// We already recorded this replacement.
    						continue
    					}
    					replacementWritten[r.Old] = true
    					rNew := modload.Replacement(r.Old)
    					if rNew == (module.Version{}) {
    						// There is no replacement. Don't try to write it.
    						continue
    					}
    
    					line := moduleLine(r.Old, rNew)
    					buf.WriteString(line)
    					if cfg.BuildV {
    						os.Stderr.WriteString(line)
    					}
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

    {{- end }}
      * Review the list of actively supported releases, CVE publications and our hardening guide:
        * https://istio.io/latest/docs/releases/supported-releases/
        * https://istio.io/latest/news/security/
        * https://istio.io/latest/docs/ops/best-practices/security/
    
    For further documentation see https://istio.io website
    
    {{-
      $deps := dict
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. README.md

    and work your way through the process that we've outlined.
    
    That said, if you have questions, reach out to us
    [one way or another][communication].
    
    [announcement]: https://cncf.io/news/announcement/2015/07/new-cloud-native-computing-foundation-drive-alignment-among-container
    [Borg]: https://research.google.com/pubs/pub43438.html
    [CNCF]: https://www.cncf.io/about
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top