Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for generations (0.25 sec)

  1. src/internal/trace/order.go

    		// Validate the named M.
    		if mid == curCtx.M {
    			if gen != o.initialGen && curCtx.G != gid {
    				// If this isn't the first generation, we *must* have seen this
    				// binding occur already. Even if the G was blocked in a syscall
    				// for multiple generations since trace start, we would have seen
    				// a previous GoStatus event that bound the goroutine to an M.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

        /**
         * The description for the task generating metadata for plugin functional tests.
         *
         * @since 4.0
         */
        static final String PLUGIN_UNDER_TEST_METADATA_TASK_DESCRIPTION = "Generates the metadata for plugin functional tests.";
    
        /**
         * The description for the task generating plugin descriptors from plugin declarations.
         *
         * @since 4.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/certs.go

    		
    		If both files already exist, kubeadm skips the generation step and existing files will be used.
    		`), kubeadmconstants.ServiceAccountPrivateKeyName, kubeadmconstants.ServiceAccountPublicKeyName)
    
    	genericLongDesc = cmdutil.LongDesc(`
    		Generate the %[1]s, and save them into %[2]s.crt and %[2]s.key files.%[3]s
    
    		If both files already exist, kubeadm skips the generation step and existing files will be used.
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

    import org.junit.jupiter.api.Test;
    
    import static java.util.Objects.nonNull;
    
    /**
     * Pseudo test to generate documentation fragment about supported CLI options. TODO such documentation generation code
     * should not be necessary as unit test but should be run during site generation (Velocity? Doxia macro?)
     */
    class CLIManagerDocumentationTest {
        private static final String LS = System.lineSeparator();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. test/linknameasm.dir/x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a linkname applied on an assembly declaration
    // does not affect stack map generation.
    
    package main
    
    import (
    	"runtime"
    	_ "unsafe"
    )
    
    //go:linkname asm
    func asm(*int)
    
    func main() {
    	x := new(int)
    	asm(x)
    }
    
    // called from asm
    func callback() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 451 bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    	PVCRefCounts map[string]int
    
    	// Whenever NodeInfo changes, generation is bumped.
    	// This is used to avoid cloning it if the object didn't change.
    	Generation int64
    }
    
    // nextGeneration: Let's make sure history never forgets the name...
    // Increments the generation number monotonically ensuring that generation numbers never collide.
    // Collision of the generation numbers would be particularly problematic if a node was deleted and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. tests/integration/ambient/wasm_test.go

    	ctx.NewSubTest("OCI_" + c.desc).Run(func(t framework.TestContext) {
    		defer func() {
    			generation++
    		}()
    		mapTagToVersionOrFail(t, "latest", "0.0.1")
    		wasmModuleURL := fmt.Sprintf("oci://%v/%v:%v", registry.Address(), imageName, "latest")
    		if err := installWasmExtension(t, c.name, wasmModuleURL, "", fmt.Sprintf("g-%d", generation), targetType, targetName, path); err != nil {
    			t.Fatalf("failed to install WasmPlugin: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/README.md

    This is the preferred method for any new dashboards.
    
    ## Legacy Dashboards
    
    Many of our older dashboards are manually created in the UI and exported as JSON and checked in.
    
    ## Generation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 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. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

        launcherJar.from(tasks.jar)
        agentJars.from(resolveAgentsClasspath)
        // The trick below is to use the templates from the current code instead of the wrapper. It does not cover the case where the generation logic is updated though.
        unixScriptTemplate.from(layout.projectDirectory.file("../../../platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top