Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for pawn (0.1 sec)

  1. configure.py

    import glob
    import json
    import os
    import platform
    import re
    import subprocess
    import sys
    
    # pylint: disable=g-import-not-at-top
    try:
      from shutil import which
    except ImportError:
      from distutils.spawn import find_executable as which
    # pylint: enable=g-import-not-at-top
    
    _DEFAULT_CUDA_VERSION = '11'
    _DEFAULT_CUDNN_VERSION = '2'
    _DEFAULT_TENSORRT_VERSION = '6'
    _DEFAULT_CUDA_COMPUTE_CAPABILITIES = '3.5,7.0'
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/os/os_windows_test.go

    	cmd.Env = append(cmd.Env, "GO_WANT_HELPER_PROCESS=1")
    	cmd.Env = append(cmd.Env, "TMP="+newtmp)
    	cmd.Env = append(cmd.Env, "TEMP="+newtmp)
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    	if want, have := newtmp, string(output); have != want {
    		t.Fatalf("unexpected child process output %q, want %q", have, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. src/os/os_test.go

    	// This will make standard input a pipe.
    	cmd.Stdin = strings.NewReader("output")
    
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    
    	// result will be like "prw-rw-rw"
    	if len(output) < 1 || output[0] != 'p' {
    		t.Fatalf("Child process reports stdin is not pipe '%v'", string(output))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    // (This test hung on a gomote with -count=100 after only a few iterations.)
    func TestConcurrentExec(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    
    	// This test will spawn nHangs subprocesses that hang reading from stdin,
    	// and nExits subprocesses that exit immediately.
    	//
    	// When issue #61080 was present, a long-lived "hang" subprocess would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    // configure it in an expected way so that we have consistency and can make changes in the future as needed.
    // We could completely reject but that seems more likely to cause pain.
    func unexpectedWaypointListener(l k8s.Listener) bool {
    	if l.Port != 15008 {
    		return true
    	}
    	if l.Protocol != k8s.ProtocolType(protocol.HBONE) {
    		return true
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/sync/atomic/atomic_test.go

    			t.Errorf("%s: wanted panic %q, got %q", name, want, err)
    		}
    	}()
    	f()
    }
    
    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 !arch32 {
    		t.Skip("test only runs on 32-bit systems")
    	}
    
    	x := make([]uint32, 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	} else if target.IsDarwin() {
    		leg := ldr.MakeSymbolUpdater(syms.LinkEditGOT)
    		leg.AddUint32(target.Arch, uint32(ldr.SymDynid(s)))
    		if target.IsPIE() && target.IsInternal() {
    			// Mach-O relocations are a royal pain to lay out.
    			// They use a compact stateful bytecode representation.
    			// Here we record what are needed and encode them later.
    			MachoAddBind(int64(ldr.SymGot(s)), s)
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. RELEASE.md

    Neeraj Pradhan, Nehal J Wani, Neil, Nick, Nick Lewycky, Niels Ole Salscheider,
    Niklas SilfverströM, Niranjan Hasabnis, Nuka-137, Nutti, ocjosen, olicht,
    omeir1, P Sudeepam, Paige Bailey, Palmer Lao, Pan Daoxin, Pariksheet Pinjari,
    Pasquale Minervini, Patrick J. Lopresti, Patrik Gustavsson, Pavel Akhtyamov,
    Pavel Samolysov, PENGWA, per1234, PeterLee, Phan Van Nguyen Duc, Philipp Jund,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"containerLogMaxWorkers": {
    						SchemaProps: spec.SchemaProps{
    							Description: "ContainerLogMaxWorkers specifies the maximum number of concurrent workers to spawn for performing the log rotate operations. Set this count to 1 for disabling the concurrent log rotation workflows Default: 1",
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top