Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 961 for LATER (0.05 sec)

  1. pkg/registry/core/persistentvolume/strategy_test.go

    					Phase:                   api.VolumePending,
    					LastPhaseTransitionTime: &later,
    				},
    			},
    			expectedObj: &api.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Status: api.PersistentVolumeStatus{
    					Phase:                   api.VolumePending,
    					LastPhaseTransitionTime: &later,
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

        private GradleVersion consumerVersion;
    
        /**
         * This is used by consumers 1.0-milestone-3 and later
         */
        public DefaultConnection() {
            LOGGER.debug("Tooling API provider {} created.", GradleVersion.current().getVersion());
        }
    
        /**
         * This is used by consumers 1.2-rc-1 and later.
         */
        @Override
        public void configure(ConnectionParameters parameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

        /**
         * Specifies whether to generate colored (ANSI encoded) output for logging. The default is to not generate color output.
         *
         * <p>Supported by Gradle 2.3 or later. Ignored for older versions.</p>
         *
         * @param colorOutput {@code true} to request color output (using ANSI encoding).
         * @return this
         * @since 2.3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/secretcontroller_test.go

    		&v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Name: "initial"},
    		},
    		&v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Name: "common"},
    		},
    	)
    	later := kube.NewFakeClient(
    		&v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Name: "later"},
    		},
    		&v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Name: "common"},
    		},
    	)
    	nextClient := initial
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/certificates.go

    	// if only one is specified, it will error later during construction
    	return len(config.KubeletServingSignerConfiguration.CertFile) > 0 || len(config.KubeletServingSignerConfiguration.KeyFile) > 0
    }
    func areKubeletClientSignerFilesSpecified(config csrsigningconfig.CSRSigningControllerConfiguration) bool {
    	// if only one is specified, it will error later during construction
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/model/StateTransitionControllerTest.groovy

        }
    
        def "can assert is in expected state or later state when in expected state"() {
            def controller = controller(TestState.A)
            asWorker {
                controller.transition(TestState.A, TestState.B) {}
            }
    
            expect:
            controller.assertInStateOrLater(TestState.B)
        }
    
        def "can assert is in expected state or later state when in later state"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

         * Expect a deprecation warning to appear when {@link #build()} or {@link #buildAndFail()} is called
         * for an old version of a third-party plugin. The assumption is that the deprecation has already
         * been fixed in a later version of the plugin, and thus no followup is needed.
         *
         * @param warning the text of the warning to match.
         */
        SmokeTestGradleRunner expectLegacyDeprecationWarning(String warning) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            then:
            provider.type == CustomTask
            provider.name == "e"
            0 * action.execute(_)
        }
    
        void "can define task to create and configure later given name and type"() {
            def action = Mock(Action)
    
            when:
            def provider = container.register("task", DefaultTask, action)
    
            then:
            0 * taskFactory._
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RegularImmutableMap.java

      // ImmutableMap.Builder, so that it can remember any DuplicateKey encountered and produce an
      // exception for a later buildOrThrow(). If builder is null that means that a duplicate
      // key will lead to an immediate exception. If it is not null then a duplicate key will instead be
      // stored in the builder, which may use it to throw an exception later.
      static <K, V> RegularImmutableMap<K, V> create(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pkg/test/framework/components/environment/kube/flags.go

    		Architecture:          ArchAMD64,
    	}
    	// hold kubeconfigs from command line to split later
    	kubeConfigs string
    	// hold controlPlaneTopology from command line to parse later
    	controlPlaneTopology string
    	// hold networkTopology from command line to parse later
    	networkTopology string
    	// hold configTopology from command line to parse later
    	configTopology string
    	// file defining all types of topology
    	clusterConfigs configsVal
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top