Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 143 for consuming (0.39 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    To make this work, we need to configure each task to know where to look for its inputs and where to place its outputs.
    Ensure that the producing and consuming tasks are configured with the same location and attach task dependencies between the tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  2. src/net/http/fs.go

    	w.WriteHeader(code)
    
    	if r.Method != "HEAD" {
    		io.CopyN(w, sendContent, sendSize)
    	}
    }
    
    // scanETag determines if a syntactically valid ETag is present at s. If so,
    // the ETag and remaining text after consuming ETag is returned. Otherwise,
    // it returns "", "".
    func scanETag(s string) (etag string, remain string) {
    	s = textproto.TrimString(s)
    	start := 0
    	if strings.HasPrefix(s, "W/") {
    		start = 2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    		})
    	})
    }
    
    func TestLabelRace(t *testing.T) {
    	testenv.MustHaveParallelism(t)
    	// Test the race detector annotations for synchronization
    	// between setting labels and consuming them from the
    	// profile.
    	matches := matchAndAvoidStacks(stackContainsLabeled, []string{"runtime/pprof.cpuHogger;key=value"}, nil)
    	testCPUProfile(t, matches, func(dur time.Duration) {
    		start := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/fmt/scan.go

    			s.buf.writeRune(r)
    		}
    		return true
    	}
    	if r != eof && accept {
    		s.UnreadRune()
    	}
    	return false
    }
    
    // peek reports whether the next character is in the ok string, without consuming it.
    func (s *ss) peek(ok string) bool {
    	r := s.getRune()
    	if r != eof {
    		s.UnreadRune()
    	}
    	return indexRune(ok, r) >= 0
    }
    
    func (s *ss) notEOF() {
    	// Guarantee there is data to be read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    }
    
    LogicalResult CreateUniformQuantizedPerAxisTypeParams(
        quant::UniformQuantizedPerAxisType qtype, Location loc,
        PatternRewriter& rewriter, Value& scale, Value& zero_point) {
      // Consuming op should already know about Quantized channel information,
      // so not passing it during conversion. This design might change if needed.
      ArrayRef<double> scales = qtype.getScales();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. src/net/http/client.go

    	// response. Similarly, RoundTrip should not attempt to
    	// handle higher-level protocol details such as redirects,
    	// authentication, or cookies.
    	//
    	// RoundTrip should not modify the request, except for
    	// consuming and closing the Request's Body. RoundTrip may
    	// read fields of the request in a separate goroutine. Callers
    	// should not mutate or reuse the request until the Response's
    	// Body has been closed.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    application is **simple**, this will probably **not be a problem**, and you might not need to specify hard memory limits. But if you are **using a lot of memory** (for example with **machine learning** models), you should check how much memory you are consuming and adjust the **number of containers** that runs in **each machine** (and maybe add more machines to your cluster).
    
    If you run **multiple processes per container** (for example with the official Docker image) you will have to make sure...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This can lead to confusing circular dependency graphs, as the configuration being resolved is used for two different purposes.
    
    To avoid this problem, plugins should mark all resolvable configurations as `canBeConsumed=false` or use the `resolvable(String)` configuration factory method when creating configurations meant for resolution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    === Deprecations
    
    [[missing_dependencies]]
    ==== Missing dependencies between tasks
    
    Having a task which produces an output in a location and another task consuming that location by referring to it as an input without the consumer task depending on the producer task has been deprecated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    This results in improved separation of concerns and better compile avoidance.
    
    === Consuming test fixtures of another project
    
    Test fixtures are not limited to a single project.
    It is often the case that a dependent project tests also needs the test fixtures of the dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top