Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for ello (0.12 sec)

  1. src/os/exec/exec.go

    // directly as Path.
    //
    // The returned Cmd's Args field is constructed from the command name
    // followed by the elements of arg, so arg should not include the
    // command name itself. For example, Command("echo", "hello").
    // Args[0] is always name, not the possibly resolved Path.
    //
    // On Windows, processes receive the whole command line as a single string
    // and do their own parsing. Command combines and quotes Args into a command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. src/os/exec/exec_test.go

    	}
    
    	tf, err := os.CreateTemp("", "")
    	if err != nil {
    		t.Fatalf("TempFile: %v", err)
    	}
    	defer os.Remove(tf.Name())
    	defer tf.Close()
    
    	const text = "Hello, fd 3!"
    	_, err = tf.Write([]byte(text))
    	if err != nil {
    		t.Fatalf("Write: %v", err)
    	}
    	_, err = tf.Seek(0, io.SeekStart)
    	if err != nil {
    		t.Fatalf("Seek: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	m := map[string][]framework.PreEnqueuePlugin{"": {plugin.(framework.PreEnqueuePlugin)}}
    	q := NewTestQueue(ctx, newDefaultQueueSort(), WithPreEnqueuePluginMap(m))
    
    	gatedPod := st.MakePod().SchedulingGates([]string{"hello world"}).Obj()
    	if err := q.Add(logger, gatedPod); err != nil {
    		t.Error("Error calling Add")
    	}
    
    	if !q.unschedulablePods.get(gatedPod).Gated {
    		t.Error("expected pod to be gated")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

        query: str = Query(default=..., max_length=10),
        session: str = Cookie(default=..., min_length=3),
        x_trace: str = Header(default=..., title="Tracing header"),
    ):
        return {"message": "Hello World"}
    ```
    
    ...all these parameters are required because the default value is `...` (Ellipsis).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	}
    
    	// Read sources of inlined functions.
    	var inlFns []*ssa.FuncLines
    	for _, fi := range ssaDumpInlined {
    		elno := fi.Endlineno
    		fname := base.Ctxt.PosTable.Pos(fi.Pos()).Filename()
    		fnLines, err := readFuncLines(fname, fi.Pos().Line(), elno.Line())
    		if err != nil {
    			writer.Logf("cannot read sources for inlined function %v: %v", fi, err)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Joins the strings in the given list of string tensors into one tensor;
      }];
    
      let description = [{
    with the given separator (default is an empty separator).
    
    Examples:
    
    >>> s = ["hello", "world", "tensorflow"]
    >>> tf.strings.join(s, " ")
    <tf.Tensor: shape=(), dtype=string, numpy=b'hello world tensorflow'>
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top