Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for child6 (0.15 sec)

  1. src/os/os_test.go

    	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))
    	}
    }
    
    func TestStatRelativeSymlink(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    // returns a recordingConn for the connection. The stdin return value is an
    // opensslInput for the stdin of the child process. It must be closed before
    // Waiting for child.
    func (test *clientTest) connFromCommand() (conn *recordingConn, child *exec.Cmd, stdin opensslInput, stdout *opensslOutputSink, err error) {
    	cert := testRSACertificate
    	if len(test.cert) > 0 {
    		cert = test.cert
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	config *Config
    
    	// ctx is the context of the handshake that is in progress.
    	ctx context.Context
    }
    
    // Context returns the context of the handshake that is in progress.
    // This context is a child of the context passed to HandshakeContext,
    // if any, and is canceled when the handshake concludes.
    func (c *ClientHelloInfo) Context() context.Context {
    	return c.ctx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/defaults_test.go

    	// Forbidden: defaulting an existing field `MyField *bool` when it was previously not defaulted
    	// Forbidden: changing an existing default value
    	// Allowed: adding a new field `MyContainer *MyType` and defaulting a child of that type (e.g. `MyContainer.MyChildField`) if and only if MyContainer is non-nil
    	expectedDefaults := map[string]string{
    		".Spec.Containers[0].Env[0].ValueFrom.FieldRef.APIVersion":       `"v1"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    		if runInDir != "" {
    			cmd.Dir = runInDir
    			// Set PWD to match Dir to speed up os.Getwd in the child process.
    			cmd.Env = append(cmd.Env, "PWD="+cmd.Dir)
    		} else {
    			// Default to running in the GOROOT/test directory.
    			cmd.Dir = t.gorootTestDir
    			// Set PWD to match Dir to speed up os.Getwd in the child process.
    			cmd.Env = append(cmd.Env, "PWD="+cmd.Dir)
    		}
    		if tempDirIsGOPATH {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. configure.py

          var_name='ANDROID_NDK_HOME',
          var_default=default_ndk_path,
          ask_for_var='Please specify the home path of the Android NDK to use.',
          check_success=valid_ndk_path,
          error_msg=('The path %s or its child file "source.properties" '
                     'does not exist.'))
      write_action_env_to_bazelrc('ANDROID_NDK_HOME', android_ndk_home_path)
      write_action_env_to_bazelrc(
          'ANDROID_NDK_API_LEVEL',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    // Issue 43295.
    func TestTemplateFuncsAfterClone(t *testing.T) {
    	s := `{{ f . }}`
    	want := "test"
    	orig := New("orig").Funcs(map[string]any{
    		"f": func(in string) string {
    			return in
    		},
    	}).New("child")
    
    	overviewTmpl := Must(Must(orig.Clone()).Parse(s))
    	var out strings.Builder
    	if err := overviewTmpl.Execute(&out, want); err != nil {
    		t.Fatal(err)
    	}
    	if got := out.String(); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    				qualifiedKind := schema.GroupKind{Group: qualifiedResource.Group, Kind: qualifiedResource.Resource}
    				fieldErrList := field.ErrorList{field.Invalid(field.NewPath("metadata").Child("resourceVersion"), newResourceVersion, "must be specified for an update")}
    				return nil, nil, apierrors.NewInvalid(qualifiedKind, name, fieldErrList)
    			}
    			if newResourceVersion != existingResourceVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    		// optimizations. Don't inline them.
    		b := state.blockDebug[:f.NumBlocks()]
    		for i := range b {
    			b[i] = BlockDebug{}
    		}
    	}
    
    	// A list of slots per Value. Reuse the previous child slices.
    	if cap(state.valueNames) < f.NumValues() {
    		old := state.valueNames
    		state.valueNames = make([][]SlotID, f.NumValues())
    		copy(state.valueNames, old)
    	}
    	vn := state.valueNames[:f.NumValues()]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    	item.pause = false
    	for i := 0; i < item.queue; i++ {
    		item.out <- struct{}{}
    	}
    	item.queue = 0
    }
    
    // WorkChannel intercepts podWork channels between the pod worker and its child
    // goroutines and allows tests to pause or release the flow of podWork to the
    // workers.
    type WorkChannel struct {
    	lock     sync.Mutex
    	channels map[types.UID]*WorkChannelItem
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top