Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 309 for newLru (0.17 sec)

  1. cmd/kubeadm/app/preflight/checks_test.go

    		},
    		{
    			check: KubernetesVersionCheck{
    				KubeadmVersion:    "v1.6.6", //KubernetesVersion newer than KubeadmVersion, within the same minor release (new patch)
    				KubernetesVersion: "v1.6.7",
    			},
    			expectWarnings: false,
    		},
    		{
    			check: KubernetesVersionCheck{
    				KubeadmVersion:    "v1.6.6", //KubernetesVersion newer than KubeadmVersion, in a different minor/in pre-release
    				KubernetesVersion: "v1.7.0-alpha.0",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    env GO111MODULE=on
    
    # Testing stderr for git ls-remote; turn off proxy.
    [!net:github.com] skip
    [!git] skip
    env GOPROXY=direct
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle-audit.go

    		ilmAction                  = "ilm-action"
    		ilmDue                     = "ilm-due"
    		ilmRuleID                  = "ilm-rule-id"
    		ilmTier                    = "ilm-tier"
    		ilmNewerNoncurrentVersions = "ilm-newer-noncurrent-versions"
    		ilmNoncurrentDays          = "ilm-noncurrent-days"
    	)
    	tags := make(map[string]interface{}, 5)
    	if src > lcEventSrc_None {
    		tags[ilmSrc] = src.String()
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 01 15:56:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    	}
    	// Use ParseRequestURI to check the URL before conversion.
    	// ParseRequestURI requires absolute URLs and is used by the OpenAPIv3 'uri' format.
    	_, err := url.ParseRequestURI(s)
    	if err != nil {
    		return types.NewErr("URL parse error during conversion from string: %v", err)
    	}
    	// We must parse again with Parse since ParseRequestURI incorrectly parses URLs that contain a fragment
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/break.go

    	buf.WriteString("<hr />\n")
    }
    
    func (b *ThematicBreak) printMarkdown(buf *bytes.Buffer, s mdState) {
    	buf.WriteString(s.prefix)
    	buf.WriteString(b.raw)
    	buf.WriteByte('\n')
    }
    
    func newHR(p *parseState, s line) (line, bool) {
    	if isHR(s) {
    		p.doneBlock(&ThematicBreak{Position{p.lineno, p.lineno}, s.string()})
    		return line{}, true
    	}
    	return s, false
    }
    
    func isHR(s line) bool {
    	t := s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/readme.md

    You can fix it by adding `-PtestJavaVersion=8` to the build.
    
    This is due to the fact that Gradle 4.6 and older don't support Java 11 and newer, which is checked before the test filter is applied.
    `org.gradle.integtests.fixtures.executer.DefaultGradleDistribution.worksWith(org.gradle.internal.jvm.Jvm)` is the method that checks this.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 21:50:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JacocoReportFixture.groovy

            return htmlDir.file("${pkg}/${file}.html").getText('UTF-8')
        }
    
        boolean assertVersion(String version) {
            String jacocoVersion = jacocoVersion()
            // Newer versions of JaCoCo include the timestamp in the rendered report
            jacocoVersion == version || jacocoVersion.startsWith(version)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    #
    # Even so, modules that declare 'go 1.17' and use 1.17 features spuriously fail
    # to build, and modules that declare an older version and use features from a
    # newer one spuriously build (instead of failing as they ought to).
    
    go mod vendor
    
    ! grep 1.17 vendor/modules.txt
    ! go build example.net/need117
    stderr '^vendor[/\\]example\.net[/\\]need117[/\\]need117.go:5:1[89]:'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pkg/scheduler/util/assumecache/assume_cache.go

    			return
    		}
    
    		// Only update object if version is newer.
    		// This is so we don't override assumed objects due to informer resync.
    		if newVersion <= storedVersion {
    			c.logger.V(10).Info("Skip adding object to assume cache because version is not newer than storedVersion", "description", c.description, "cacheKey", name, "newVersion", newVersion, "storedVersion", storedVersion)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. tests/integration/operator/uninstall_test.go

    					} else {
    						t.Errorf("failed to create istio namespace: %v", err)
    					}
    				}
    				iopCRFile = filepath.Join(workDir, "iop_cr.yaml")
    				r := "v2"
    				// later just run `kubectl apply -f newcr.yaml` to apply new installation cr files and verify.
    				applyIop(t, t, cs, "minimal", r)
    
    				if err := checkInstallStatus(cs, r); err != nil {
    					t.Errorf("failed to check install status: %v", err)
    				}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top