Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,303 for starts (0.39 sec)

  1. testing/smoke-ide-test/build.gradle.kts

        dependsOn(unzipIdeStarter)
    }
    
    dependencies {
        ideStarter(libs.gradleIdeStarter)
        smokeIdeTestDistributionRuntimeOnly(project(":distributions-full")) {
            because("Tests starts an IDE with using current Gradle distribution")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 18:13:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin.go

    func (e *examplePlugin) NotifyRegistrationStatus(ctx context.Context, status *registerapi.RegistrationStatus) (*registerapi.RegistrationStatusResponse, error) {
    	klog.InfoS("Notify registration status", "status", status)
    
    	if e.registrationStatus != nil {
    		e.registrationStatus <- *status
    	}
    
    	return &registerapi.RegistrationStatusResponse{}, nil
    }
    
    // Serve starts a pluginwatcher server and one or more of the plugin services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 10 07:44:16 UTC 2021
    - 5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue25897b.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure the runtime can scan args of an unstarted goroutine
    // which starts with a reflect-generated function.
    
    package main
    
    import (
    	"reflect"
    	"runtime"
    )
    
    const N = 100
    
    type T struct {
    }
    
    func (t *T) Foo(c chan bool) {
    	c <- true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 18:50:30 UTC 2019
    - 651 bytes
    - Viewed (0)
  4. cluster/images/etcd/migrate/migrate.go

    	opts = migrateOpts{}
    )
    
    func main() {
    	registerFlags(migrateCmd.Flags(), &opts)
    	err := migrateCmd.Execute()
    	if err != nil {
    		klog.Errorf("Failed to execute migratecmd: %s", err)
    	}
    }
    
    // runMigrate starts the migration.
    func runMigrate() {
    	if err := opts.validateAndDefault(); err != nil {
    		klog.Fatalf("%v", err)
    	}
    	copyBinaries()
    
    	target := &EtcdVersionPair{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  5. test/func3.go

    type t1 int
    type t2 int
    type t3 int
    
    func f1(*t2, x t3)	// ERROR "named"
    func f2(t1, *t2, x t3)	// ERROR "named"
    func f3() (x int, *string)	// ERROR "named"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 505 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentHandle.java

     */
    public interface DeploymentHandle {
        /**
         * Returns true if the deployment is still running.
         */
        boolean isRunning();
    
        /**
         * Starts the given deployment.
         * @param deployment the deployment to be started
         */
        void start(Deployment deployment);
    
        /**
         * Stops the deployment.
         */
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

      let arguments = (ins
        F32Tensor:$inputs,
        F32Attr:$min,
        F32Attr:$max,
        // The bitwidth of the quantization; between 2 and 16, inclusive.
        I64Attr:$num_bits,
        // Quantization range starts from 0 or 1; starts from 1 if true.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$narrow_range,
        // The sign of the quantization.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$is_signed
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc-bare-m.go

    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine enters a syscall, grabs a P, and starts running.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 999 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

      let arguments = (ins
        F32Tensor:$inputs,
        F32Attr:$min,
        F32Attr:$max,
        // The bitwidth of the quantization; between 2 and 16, inclusive.
        I64Attr:$num_bits,
        // Quantization range starts from 0 or 1; starts from 1 if true.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$narrow_range,
        // The sign of the quantization.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$is_signed
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/StandardOutputRedirector.java

    public interface StandardOutputRedirector {
    
        /**
         * Starts redirection of System.out and System.err to the listener attached to
         * {@link #redirectStandardErrorTo(OutputListener)} and
         * {@link #redirectStandardOutputTo(OutputListener)
         */
        void start();
    
        /**
         * Restores System.out and System.err to the values they had before {@link #start()} has been called.
         */
        void stop();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top