Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for pawn (0.1 sec)

  1. hack/make-rules/test.sh

      # 'go test' commands at once.
      # To properly parse the test results if generating a JUnit test report, we
      # must make sure the output from PARALLEL runs is not mixed. To achieve this,
      # we spawn a subshell for each PARALLEL process, redirecting the output to
      # separate files.
    
      printf "%s\n" "${@}" \
        | xargs -I{} -n 1 -P "${KUBE_COVERPROCS}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

                "${prefix}TestFullDistributionRuntimeClasspath"(project(":distributions-full"))
                // Add the agent JAR to the test runtime classpath so the InProcessGradleExecuter can find the module and spawn daemons.
                // This doesn't apply the agent to the test process.
                "${prefix}TestRuntimeOnly"(project(":instrumentation-agent"))
                "${prefix}TestAgentsClasspath"(project(":instrumentation-agent"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/syscall/exec_unix_test.go

    		if p := recover(); p != nil {
    			t.Fatal("forkExec panicked")
    		}
    	}()
    
    	// We don't really care what the result of forkExec is, just that it doesn't
    	// panic, so we choose something we know won't actually spawn a process (probably).
    	syscall.ForkExec("/dev/null", nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_test.go

    		}
    	}()
    	f()
    }
    
    // Variant of sync/atomic's TestUnaligned64:
    func TestUnaligned64(t *testing.T) {
    	// Unaligned 64-bit atomics on 32-bit systems are
    	// a continual source of pain. Test that on 32-bit systems they crash
    	// instead of failing silently.
    
    	if unsafe.Sizeof(int(0)) != 4 {
    		t.Skip("test only runs on 32-bit systems")
    	}
    
    	x := make([]uint32, 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/xds_test.go

    			Select("{.resources[?(@.address.socketAddress.portValue==27018)]}").
    			Equals("0.0.0.0", "{.address.socketAddress.address}").
    			// Example doing a struct comparison, note the pain with oneofs....
    			Equals(&core.SocketAddress{
    				Address: "0.0.0.0",
    				PortSpecifier: &core.SocketAddress_PortValue{
    					PortValue: uint32(27018),
    				},
    			}, "{.address.socketAddress}").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device.h

      // The name of the device that is used to compile Ops for this XlaDevice.
      const DeviceType jit_device_name_;
      // The platform for this device.
      se::Platform* const platform_;  // Not owned.
      // Intra-op threads to spawn (from SessionOptions).
      const int intra_op_parallelism_threads_;
      // Memory allocator associated with this device.
      Allocator* xla_allocator_ TF_GUARDED_BY(mu_) = nullptr;  // Not owned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. cni/pkg/cmd/root.go

    		installDaemonReady, watchServerReady := nodeagent.StartHealthServer()
    
    		if cfg.InstallConfig.AmbientEnabled {
    			// Start ambient controller
    
    			// node agent will spawn a goroutine and watch the K8S API for events,
    			// as well as listen for messages from the CNI binary.
    			log.Info("Starting ambient node agent with inpod redirect mode")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    	pflag.CommandLine.AddGoFlagSet(goflag.CommandLine)
    	pflag.Parse()
    
    	// Register the metrics we defined above with prometheus.
    	customMetricRegistry.MustRegister(etcdVersion)
    
    	// Spawn threads for periodically scraping etcd version metrics.
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    	go getVersionPeriodically(stopCh)
    
    	// Serve our metrics on listenAddress/metricsPath.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. kotlin-js-store/yarn.lock

      integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==
      dependencies:
        object-assign "^4"
        vary "^1"
    
    cross-spawn@^7.0.3:
      version "7.0.3"
      resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
      integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
      dependencies:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/eventbus/EventBus.java

     *
     * <p>When {@code post} is called, all registered subscribers for an event are run in sequence, so
     * subscribers should be reasonably quick. If an event may trigger an extended process (such as a
     * database load), spawn a thread or queue it for later. (For a convenient way to do this, use an
     * {@link AsyncEventBus}.)
     *
     * <h2>Subscriber Methods</h2>
     *
     * <p>Event subscriber methods must accept only one argument: the event.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
Back to top