Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,255 for yearly (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/equality.go

    	//	unchanged. If so, then do the full, slower check.
    	//
    	// In most cases which actually update the object, the managed fields modulo
    	//	timestamp check will fail, and we will be able to return early.
    	//
    	// In other cases, the managed fields may be exactly the same,
    	// 	except for timestamp, but the objects are the different. This is the
    	//	slow path which checks the full object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 14:56:34 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/root/DefaultRootLocator.java

    @Named
    public class DefaultRootLocator implements RootLocator {
    
        public boolean isRootDirectory(Path dir) {
            if (Files.isDirectory(dir.resolve(".mvn"))) {
                return true;
            }
            // we're too early to use the modelProcessor ...
            Path pom = dir.resolve("pom.xml");
            try (InputStream is = Files.newInputStream(pom)) {
                XMLStreamReader parser = new WstxInputFactory().createXMLStreamReader(is);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 29 10:03:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/IncludedBuildDependencySubstitutionsBuilder.java

            }
        }
    
        private void build(IncludedBuildState build) {
            if (processed.contains(build)) {
                // This may happen during early resolution, where we iterate through all builds to find only
                // the ones for which we need to register substitutions early so that they are available
                // during plugin application from plugin builds.
                // See: DefaultIncludedBuildRegistry.ensureConfigured()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	}
    
    	// Exit early if rotation is disabled.
    	if !rotate {
    		return nil
    	}
    
    	kubeconfigPath := filepath.Join(kubeadmconstants.KubernetesDir, kubeadmconstants.KubeletKubeConfigFileName)
    	fmt.Printf("[kubelet-finalize] Updating %q to point to a rotatable kubelet client certificate and key\n", kubeconfigPath)
    
    	// Exit early if dry-running is enabled.
    	if data.DryRun() {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. releasenotes/notes/skip-graceful-termination.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue: [36686]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 03:38:52 UTC 2023
    - 180 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentModuleMetadataContainerTest.groovy

        }
    
        def "detects cycles early"() {
            replacements.module("o:a").replacedBy("o:b")
            when: replacements.module("o:b").replacedBy("o:a")
    
            then:
            def ex = thrown(InvalidUserDataException)
            ex.message == "Cannot declare module replacement o:b->o:a because it introduces a cycle: o:b->o:a->o:b"
        }
    
        def "detects transitive cycles early"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/defers/doc.go

    //
    // defers: report common mistakes in defer statements
    //
    // The defers analyzer reports a diagnostic when a defer statement would
    // result in a non-deferred call to time.Since, as experience has shown
    // that this is nearly always a mistake.
    //
    // For example:
    //
    //	start := time.Now()
    //	...
    //	defer recordLatency(time.Since(start)) // error: call to time.Since is not deferred
    //
    // The correct code is:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 20:06:48 UTC 2023
    - 763 bytes
    - Viewed (0)
  8. test/fixedbugs/issue54343.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "runtime"
    
    func main() {
    	if wait() {
    		panic("GC'd early")
    	}
    	m = nil
    	if !wait() {
    		panic("never GC'd")
    	}
    }
    
    var m = New[int]().M
    
    func New[X any]() *T[X] {
    	p := new(T[X])
    	runtime.SetFinalizer(p, func(*T[X]) { close(done) })
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 11 20:13:07 UTC 2022
    - 695 bytes
    - Viewed (0)
  9. src/cmd/trace/procgen.go

    	// transition to and from NotExist when GOMAXPROCS changes. We can emit
    	// events for this to clearly delineate GOMAXPROCS changes.
    
    	if viewerEv.Name != "" {
    		ctx.Instant(viewerEv)
    	}
    }
    
    func (g *procGenerator) Finish(ctx *traceContext) {
    	ctx.SetResourceType("PROCS")
    
    	// Finish off ranges first. It doesn't really matter for the global ranges,
    	// but the proc ranges need to either be a subset of a goroutine slice or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. internal/config/config_test.go

    		},
    		// Keys and input order of k=v is same.
    		{
    			input: `connection_string="host=localhost port=2832" comment="really long comment"`,
    			keys:  []string{"connection_string", "comment"},
    			expectedFields: map[string]struct{}{
    				`connection_string="host=localhost port=2832"`: {},
    				`comment="really long comment"`:                {},
    			},
    		},
    		// Keys with spaces in between
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 18 22:55:17 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top