Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 646 for generations (0.22 sec)

  1. pkg/config/model.go

    	OwnerReferences []metav1.OwnerReference `json:"ownerReferences,omitempty"`
    
    	// A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
    	Generation int64 `json:"generation,omitempty"`
    }
    
    // Config is a configuration unit consisting of the type of configuration, the
    // key identifier that is unique per type, and the content represented as a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

            ConcurrentTestUtil.poll(60) {
                assert handle.standardOutput.contains(incubatingPrompt)
            }
            handle.stdinPipe.write(("no" + TextUtil.platformLineSeparator).bytes)
    
            // after generating the project, we suggest the user reads some documentation
            ConcurrentTestUtil.poll(60) {
                assert handle.standardOutput.contains(documentationRegistry.getSampleForMessage())
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

            if (errorCount < 0) {
                throw new AntlrSourceGenerationException("There were errors during grammar generation", result.getException());
            } else if (errorCount == 1) {
                throw new AntlrSourceGenerationException("There was 1 error during grammar generation", result.getException());
            } else if (errorCount > 1) {
                throw new AntlrSourceGenerationException("There were "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    NOTE: While tests should be executed before generation of the report, the `jacocoTestReport` task does not depend on the `test` task.
    
    Depending on your usecases, you may want to always generate the `jacocoTestReport` or run the `test` task before generating the report explicitly.
    
    .Define dependencies between code coverage reports and test execution
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    	env.expectPath(s, "/apis/stable.example.com/v1beta1/coolbars")
    	env.expectPath(s, "/apis/apiextensions.k8s.io/v1")
    
    	t.Log("Removing version v1beta1")
    	crd.Spec.Versions = crd.Spec.Versions[1:]
    	crd.Generation += 1
    	// Generation is updated before storage to etcd. Since we don't have that in the fake client, manually increase it.
    	env.Interface.ApiextensionsV1().CustomResourceDefinitions().Update(ctx, crd, metav1.UpdateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinition.go

    	b.ensureObjectMetaApplyConfigurationExists()
    	b.ResourceVersion = &value
    	return b
    }
    
    // WithGeneration sets the Generation field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Generation field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PalantirConsistentVersionsPluginSmokeTest.groovy

             ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            expect:
            succeeds 'properties'
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        def "#targetScriptDsl build file generation is skipped when #existingScriptDsl build file already exists"() {
            given:
            def existingDslFixture = rootProjectDslFixtureFor(existingScriptDsl as BuildInitDsl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/certcontroller.go

    	log.Infof("Generating K8S-signed cert for %v using signer %v", s.dnsNames, signerName)
    	certChain, keyPEM, _, err = chiron.GenKeyCertK8sCA(s.kubeClient.Kube(),
    		strings.Join(s.dnsNames, ","), "", signerName, true, SelfSignedCACertTTL.Get())
    	if err != nil {
    		return fmt.Errorf("failed generating key and cert by kubernetes: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/cr/v1/example.go

    	b.ensureObjectMetaApplyConfigurationExists()
    	b.ResourceVersion = &value
    	return b
    }
    
    // WithGeneration sets the Generation field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Generation field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 10:01:37 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top