Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 653 for Initial (0.15 sec)

  1. 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)
  2. 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)
  3. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    2. License Grants.
    
        2.1. The Initial Developer Grant.
    
        Conditioned upon Your compliance with Section 3.1 below and subject
        to third party intellectual property claims, the Initial Developer
        hereby grants You a world-wide, royalty-free, non-exclusive license:
    
        (a) under intellectual property rights (other than patent or
        trademark) Licensable by Initial Developer, to use, reproduce,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         *
         * @since 5.0
         */
        DirectoryProperty directoryProperty();
    
        /**
         * Creates a new {@link RegularFileProperty} that uses the project directory to resolve relative paths, if required. The property has no initial value.
         *
         * @since 5.0
         */
        RegularFileProperty fileProperty();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/etcd/local.go

    		etcdLocalhostAddress = "::1"
    	}
    	defaultArguments := []kubeadmapi.Arg{
    		{Name: "name", Value: nodeName},
    		// TODO: start using --initial-corrupt-check once the graduated flag is available,
    		// https://github.com/kubernetes/kubeadm/issues/2676
    		{Name: "experimental-initial-corrupt-check", Value: "true"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  6. pkg/proxy/metaproxier/meta_proxier.go

    func (proxier *metaProxier) OnServiceDelete(service *v1.Service) {
    	proxier.ipv4Proxier.OnServiceDelete(service)
    	proxier.ipv6Proxier.OnServiceDelete(service)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *metaProxier) OnServiceSynced() {
    	proxier.ipv4Proxier.OnServiceSynced()
    	proxier.ipv6Proxier.OnServiceSynced()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

         *
         * Our solution is for threads to CAS seenExceptions from null to a Set populated with _the
         * initial exception_, no matter which thread does the work. This ensures that seenExceptions
         * always contains not just the current thread's exception but also the initial thread's.
         */
        Set<Throwable> seenExceptionsLocal = seenExceptions;
        if (seenExceptionsLocal == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            repoSpec.url = repo.url
    
            submoduleRepo.workTree.file("foo.txt") << "hello from submodule"
            submoduleRepo.commit("initial commit")
    
            submoduleRepo2.workTree.file("bar.txt") << "hello from another submodule"
            submoduleRepo2.commit("initial commit")
        }
    
        def 'clone a repository'() {
            given:
            def target = tmpDir.file('versionDir')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. releasenotes/notes/38158.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 163 bytes
    - Viewed (0)
  10. pkg/kube/krt/fetch.go

    		}
    		// Skip calling all the existing state for secondary dependencies, otherwise we end up with a deadlock due to
    		// rerunning the same collection's recomputation at the same time (once for the initial event, then for the initial registration).
    		c.RegisterBatch(ff, false)
    	})
    
    	// Now we can do the real fetching
    	// Compute our list of all possible objects that can match. Then we will filter them later.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top