Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for output1 (0.18 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    @Override
                    void transform(TransformOutputs outputs) {
                        // Simulate transform leaving file open
                        def output = outputs.file("output.txt")
                        output.createNewFile()
                        TestState.fileKeptOpen = output.newOutputStream()
                        TestState.fileKeptOpen << "output"
                        TestState.fileKeptOpen.flush()
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ExecutorConvertControlToDataOutputsPass : Pass<"tf-executor-convert-control-to-data-outputs", "ModuleOp"> {
      let summary = "Chain control outputs of while loop body";
    
      let description = [{
        This pass converts the control outputs of a while loop body function to data
        outputs. Thus, inter iteration control dependencies are transformed to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

              // node we're updating is the right one for now we're just ensuring
              // they have the same number of input, output and first output is
              // the same
              if (key_inputs.size() == inputs.size() &&
                  key_outputs.size() == outputs.size() &&
                  key_outputs[0] == outputs[0]) {
                ret &=
                    op->mutate_large_custom_options_offset(custom_op.second.first);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      bool InferShapeForRestore(Operation* op);
    
      // Infers the shape IfOp outputs based on the shapes of the then and else
      // function result types.
      bool InferShapeForIf(IfOp op);
    
      // Infers the shape IfRegion outputs based on the shapes of the then and else
      // yields.
      bool InferShapeForIfRegion(IfRegionOp op);
    
      // Infers the shape CaseOp outputs based on the shapes of branch function
      // result types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	kubeletUser = "kubelet"
    )
    
    // parseGetSubIdsOutput parses the output from the `getsubids` tool, which is used to query subordinate user or group ID ranges for
    // a given user or group. getsubids produces a line for each mapping configured.
    // Here we expect that there is a single mapping, and the same values are used for the subordinate user and group ID ranges.
    // The output is something like:
    // $ getsubids kubelet
    // 0: kubelet 65536 2147483648
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	reqb := reqBytes(req)
    	var output strings.Builder
    	conn := &rwTestConn{
    		Reader: bytes.NewReader(reqb),
    		Writer: &output,
    		closec: make(chan bool, 1),
    	}
    	ln := &oneConnListener{conn: conn}
    	srv := &Server{
    		ErrorLog: log.New(&ht.logbuf, "", 0),
    		Handler:  ht.handler,
    	}
    	go srv.Serve(ln)
    	<-conn.closec
    	return output.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    			// We found the main output in the cache.
    			// If we don't need any other outputs, we can stop.
    			// Otherwise, we need to write files to a.Objdir (needVet, needCgoHdr).
    			// Remember that we might have them in cache
    			// and check again after we create a.Objdir.
    			cachedBuild = true
    			a.output = []byte{} // start saving output in case we miss any cache results
    			need &^= needBuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		r, err := printPodDisruptionBudget(&list.Items[i], options)
    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    // TODO(AdoHe): try to put wide output in a single method
    func printReplicationController(obj *api.ReplicationController, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. src/net/http/server.go

    //
    // chunkWriter also is responsible for finalizing the Header, including
    // conditionally setting the Content-Type and setting a Content-Length
    // in cases where the handler's final output is smaller than the buffer
    // size. It also conditionally adds chunk headers, when in chunking mode.
    //
    // See the comment above (*response).Write for the entire write flow.
    type chunkWriter struct {
    	res *response
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // *testing.T to report success or failure, prints output to os.Stdout.
    // If the last comment in the function starts with "Output:" then the output
    // is compared exactly against the comment (see examples below). If the last
    // comment begins with "Unordered output:" then the output is compared to the
    // comment, however the order of the lines is ignored. An example with no such
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top