Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 220 for ci (0.05 sec)

  1. cmd/site-replication.go

    func (c *SiteReplicationSys) getPeerForUpload(deplID string) (pi srPeerInfo, local bool) {
    	ci, _ := c.GetClusterInfo(GlobalContext)
    	if !ci.Enabled {
    		return pi, true
    	}
    	for _, site := range ci.Sites {
    		if deplID == site.DeploymentID {
    			ep, _ := url.Parse(site.Endpoint)
    			pi = srPeerInfo{
    				PeerInfo:    site,
    				EndpointURL: ep,
    			}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

              <association>
                <type>IssueManagement</type>
              </association>
            </field>
    
            <!-- ====================================================================== -->
            <!-- CI Management                                                          -->
            <!-- ====================================================================== -->
    
            <field>
              <name>ciManagement</name>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // housekeeping, and users typically shouldn't need to set or
      // understand this field. A workflow can be the user's name, a
      // controller's name, or the name of a specific apply path like
      // "ci-cd". The set of fields is always in the version that the
      // workflow used when modifying the object.
      //
      // +optional
      repeated ManagedFieldsEntry managedFields = 17;
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. cmd/testdata/xl-meta-merge.zip

    axGv×ÂåÓÖû-ÅíÒùÍäîõ ÏêãWC^ï¯{ ìinéœjtgô“°`¥r¾iYÖi„oy}L\}^w†ðñ A]ït^ ÜQWx2öÎ û6? ŽsVrñZwôM„\mM{÷sEtz_ˆ˜ûéI[jK^ AQoxoˆCé÷Rg|ïh“txW}7}aUÖcq¼?qn37 KcÖr \Õúxm þÐp{Hsox祦ÒqXÚ}TmòuwTBÕ´À¹¯¦$ïzRcWyïp@’ ÃëqiuRnKN ixÕöÀ»½= %^raÙ¢vñ~Lªã?ws ,iDª SÖoCetôSÀÄ I¼dwx Uôt¾ ›wªU =ªzPïŠvcJR Ñ‚ŒÂþÜ7¸fqItïrºlq,0ýZoW_áXO²y èh}yNeëtM ª B:QwÍÖ¬NPãFtU\÷²zxoAgWˆNfs NmÖv†tW®ìGzißtF² ËwAºmaW¨j}sf to¾wîã*jK aEEwGS¢tc¾@øgª|{NB’Ôúƒ=q†U`ÙfÎ"Yv†ÌïËFG¼ÅiBæ¨Al >u` tjñt²¤&_øsi^ª~}ueH†òaG@Doϳ ²g{{†ùsZºGéïˆ~ßFKjŽå+ek1,ìÆ '†ãxjUÙ†vvCtNSo¨Üi¢I^Egu`]ùt„ÍÖ...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        assertEquals("barfoo", result.get(1));
        assertEquals("barfoo", result.get(2));
        assertEquals("barfoo", cache.getUnchecked(key));
      }
    
      // Test ignored because it is extremely flaky in CI builds
      @SuppressWarnings("ThreadPriorityCheck") // doing our best to test for races
      public void
          ignoreTestExpandDuringRefresh()
          throws InterruptedException, ExecutionException {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

    * Change references to gs://kubernetes-release/ci ([#28193](https://github.com/kubernetes/kubernetes/pull/28193), [@zmerlynn](https://github.com/zmerlynn))
    * Build: Add KUBE_GCS_RELEASE_BUCKET_MIRROR option to push-ci-build.sh ([#28172](https://github.com/kubernetes/kubernetes/pull/28172), [@zmerlynn](https://github.com/zmerlynn))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * etcd version 2.2.1
      * etcd version 3.0.14 [has also been validated](https://k8s-gubernator.appspot.com/builds/kubernetes-jenkins/logs/ci-kubernetes-e2e-gce-etcd3/) but does require [specific configuration steps](https://coreos.com/blog/migrating-applications-etcd-v3.html)
    
    ## Changelog since v1.5.0-beta.3
    
    ### Other notable changes
    
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    	}
    
    	// Avoid allocating more than half of the available memory
    	if maxN := availableMemory() / (blockSizeV2 * 2); n > maxN {
    		n = maxN
    	}
    
    	if globalIsCICD || strconv.IntSize == 32 {
    		n = 256 // 256MiB for CI/CD environments is sufficient or on 32bit platforms.
    	}
    
    	// Initialize byte pool once for all sets, bpool size is set to
    	// setCount * setDriveCount with each memory upto blockSizeV2.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 89.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

    * Set Dashboard UI version to v1.1.0 ([#27869](https://github.com/kubernetes/kubernetes/pull/27869), [@bryk](https://github.com/bryk))
    
    ### Other notable changes
    
    * Build: Add KUBE_GCS_RELEASE_BUCKET_MIRROR option to push-ci-build.sh ([#28172](https://github.com/kubernetes/kubernetes/pull/28172), [@zmerlynn](https://github.com/zmerlynn))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.23.md

    - Kubeadm: update references to legacy artifacts locations, the `ci-cross` prefix has been removed from the version match as it does not exist in the new `gs://k8s-release-dev` bucket. ([#103813](https://github.com/kubernetes/kubernetes/pull/103813), [@SataQiu](https://github.com/SataQiu))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top