Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,905 for Consumes (0.23 sec)

  1. src/test/java/jcifs/tests/FileLocationTest.java

            try ( SmbResource p = new SmbFile("smb://1.2.3.4/dfs/share/bar/", getContext()) ) {
                DfsReferralData dr = new TestDfsReferral("1.2.3.4", "target", "", 6); // consumes the /share dfs root path
                String reqPath = "\\share\\bar\\";
                SmbResourceLocator fl = p.getLocator();
                assertEquals("\\bar\\", ( (SmbResourceLocatorInternal) fl ).handleDFSReferral(dr, reqPath));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    Either way, the outputs produced by any tasks depending on such data will only be re-usable by builds running against the exact same commit.
    
    Another common, but less obvious source of unstable inputs is when a task consumes the output of another task which produces non-repeatable results, such as the example before of a code generator that embeds timestamps in its output.
    
    A task can only be loaded from the cache if it has stable task inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    	line, column int    // line and column for current token; error position for invalid line directives
    }
    
    var segments = []segment{
    	// exactly one token per line since the test consumes one token per segment
    	{"  line1", "TestLineDirectives", 1, 3},
    	{"\nline2", "TestLineDirectives", 2, 1},
    	{"\nline3  //line File1.go:100", "TestLineDirectives", 3, 1}, // bad line comment, ignored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

          tf_executor.NextIteration.sink [%token] (%value) : tensor<*xi32>
    
        Note: Additional result corresponds to the control output.
      }];
    
      let arguments = (ins
        // The NextIteration.Sink operation consumes the token produced by the source.
        TfeTokenType:$token,
        AnyType:$input,
        // Optional extra control inputs.
        Variadic<TfeControlType>:$controlInputs
      );
    
      let builders = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. src/go/build/constraint/expr.go

    		}
    		panic(&SyntaxError{Offset: p.pos, Err: "unexpected token " + p.tok})
    	}
    	tok := p.tok
    	p.lex()
    	return tag(tok)
    }
    
    // lex finds and consumes the next token in the input stream.
    // On return, p.tok is set to the token text,
    // p.isTag reports whether the token was a tag,
    // and p.pos records the byte offset of the start of the token in the input stream.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    func (v indexType) indexed() bool   { return v == indexedTrue }
    func (v indexType) sensitive() bool { return v == indexedNever }
    
    // returns errNeedMore if there isn't enough data available.
    // any other error is fatal.
    // consumes d.buf iff it returns nil.
    // precondition: must be called with len(d.buf) > 0
    func (d *Decoder) parseHeaderFieldRepr() error {
    	b := d.buf[0]
    	switch {
    	case b&128 != 0:
    		// Indexed representation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_working_pods gauge
    				kubelet_working_pods{config="desired",lifecycle="sync",static=""} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. src/runtime/HACKING.md

    `note`:`notesleep` also prevents rescheduling of any associated G and
    P, while `notetsleepg` acts like a blocking system call that allows
    the P to be reused to run another G. This is still less efficient than
    blocking the G directly since it consumes an M.
    
    To interact directly with the goroutine scheduler, use `gopark` and
    `goready`. `gopark` parks the current goroutine—putting it in the
    "waiting" state and removing it from the scheduler's run queue—and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/concepts.md

    And if your remote server or virtual machine only has 3 GB of RAM, trying to load more than 4 GB of RAM will cause problems. 🚨
    
    ### Multiple Processes - An Example
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. tensorflow/c/eager/tape.h

    class VSpace {
     public:
      virtual ~VSpace() {}
    
      // Returns the number of elements in the gradient tensor.
      virtual int64_t NumElements(Gradient* tensor) const = 0;
    
      // Consumes references to the tensors in the gradient_tensors list and returns
      // a tensor with the result.
      virtual Gradient* AggregateGradients(
          gtl::ArraySlice<Gradient*> gradient_tensors) const = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
Back to top