Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 836 for Initial (0.38 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    			if tt.initial != nil {
    				copied := *tt.initial
    				initial = &copied
    			} else {
    				initial = nil
    			}
    			t.Run(fmt.Sprintf("%#v seed=%d", initial, seed), func(t *testing.T) {
    				rand.Seed(seed)
    				for i := 0; i < len(tt.want); i++ {
    					got := initial.Step()
    					t.Logf("[%d]=%s", i, got)
    					if initial != nil && initial.Jitter > 0 {
    						if got == tt.want[i] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    	if err := verifyPV(cache, oldPV.Name, oldPV); err != nil {
    		t.Fatalf("Failed to GetPV() after initial update: %v", err)
    	}
    
    	// Restore PV
    	cache.Restore(oldPV.Name)
    	if err := verifyPV(cache, oldPV.Name, oldPV); err != nil {
    		t.Fatalf("Failed to GetPV() after initial restore: %v", err)
    	}
    
    	// Assume newPV
    	if err := cache.Assume(newPV); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. releasenotes/notes/ambient-service-entry.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 07 16:11:34 UTC 2023
    - 140 bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLogger.java

        /**
         * Convenience method that sets descriptions and logs started() event.
         *
         * @param status The initial status message. Can be null or empty.
         * @return this logger instance
         */
        ProgressLogger start(String description, String status);
    
        /**
         * Logs the start of the operation, with no initial status.
         */
        void started();
    
        /**
         * Logs the start of the operation, with the given status.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. doc/README.md

    of the website repository and remove the `doc/next` directory in this repository.
    
    To begin the next release development cycle, populate the contents of `next`
    with those of `initial`. From the repo root:
    
        > cd doc
        > cp -r initial/* next
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/TryTest.groovy

            Try.successful(20).tryMap { (it + 10).toString() } == Try.successful('30')
        }
    
        def "flat map failure"() {
            def initial = Try.<Integer>failure(new RuntimeException("failed"))
            expect:
            initial.flatMap { it.toString() } == initial
        }
    
        def "failing flat map"() {
            def failure = new RuntimeException("failed")
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

                jar {
                    from file("version")
                }
            """
            repo.workTree.file("settings.gradle") << """
                rootProject.name = "dep"
            """
            commits["initial"] = repo.commit('initial')
    
            def versionFile = repo.workTree.file("version")
            versions.each { version ->
                versionFile.text = version
                def commit = repo.commit("version is $version")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

                    from(GitVersionControlSpec) {
                        url = uri('${repoC.url}')
                    }
                }
            """
            repoA.commit('initial version')
    
            def repoBSettingsFile = repoB.file("settings.gradle")
            repoBSettingsFile << """
                rootProject.name = 'testB'
                gradle.rootProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

            """
    
            when:
            inputFile.text = "initial"
            runWithFileSystemWatchingAndMakeChangesWhen("waitForUserChanges", "userInput") {
                inputFile.text = "changed"
                waitForChangesToBePickedUp()
            }
            then:
            executedAndNotSkipped(":consumer")
            outputFile.text == "initial"
            assertExpectedProjectFilesInVfs(1)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/aggregator.go

    			// let the CRD controller process the initial set of CRDs before starting the autoregistration controller.
    			// this prevents the autoregistration controller's initial sync from deleting APIServices for CRDs that still exist.
    			// we only need to do this if CRDs are enabled on this server.  We can't use discovery because we are the source for discovery.
    			if crdAPIEnabled {
    				klog.Infof("waiting for initial CRD sync...")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top