Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 967 for demand (0.14 sec)

  1. src/net/http/response.go

    }
    
    // Response represents the response from an HTTP request.
    //
    // The [Client] and [Transport] return Responses from servers once
    // the response headers have been received. The response body
    // is streamed on demand as the Body field is read.
    type Response struct {
    	Status     string // e.g. "200 OK"
    	StatusCode int    // e.g. 200
    	Proto      string // e.g. "HTTP/1.0"
    	ProtoMajor int    // e.g. 1
    	ProtoMinor int    // e.g. 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    	}
    	return v
    }
    
    // convertCelTypeToDeclType converts a cel.Type to DeclType, for the use of
    // the TypeProvider and the cost estimator.
    // List and map types are created on-demand with their parameters converted recursively.
    func convertCelTypeToDeclType(celType *cel.Type) *apiservercel.DeclType {
    	if celType == nil {
    		return apiservercel.DynType
    	}
    	switch celType {
    	case cel.AnyType:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/eval_util.cc

      // Explicitly set device to Host CPU instead of the device present in device
      // attribute of the MLIR op. The assigned device might be remote, not
      // available during compilation or compilation only device for on demand
      // execution which may create a recursion if used for constant folding.
      constexpr char kHostCpu[] = "/job:localhost/replica:0/task:0/CPU:0";
      TFE_OpSetDevice(op, kHostCpu, status);
      RETURN_FAILURE_IF_ERROR(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 13 06:02:14 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. ci/official/utilities/setup.sh

    #
    # Separately, if TFCI is set *and* there are also additional TFCI_ variables
    # set in the shell environment, those variables will be restored after the
    # TFCI env has been loaded. This is useful for e.g. on-demand "generic" jobs
    # where the user may wish to change just one option.
    if [[ -z "${TFCI:-}" ]]; then
      echo '==TFCI==: The $TFCI variable is not set. This is fine as long as you'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

        }
    
        /**
         * Whether this task should fail if no signatory or signature type are configured at generation time.
         *
         * If {@code required} is a {@link Callable}, it will be stored and "called" on demand (i.e. when {@link #isRequired()} is called) and the return value will be interpreting according to the Groovy
         * Truth. For example:
         *
         * <pre>
         * signing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

                    compositeSubstitute()
                }
            }
    
            where:
            name                  | args
            "regular build"       | []
            "configure on demand" | ["--configure-on-demand"]
            "parallel"            | ["--parallel"]
        }
    
        def "substitutes dependency in composite containing participants with same root directory name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":sub2:sub3:test")
            events.tests.size() == 10 + 7 + 9
        }
    
        def "compatible with configure on demand"() {
            setup:
            10.times {
                settingsFile << "include ':sub$it'\n"
                file("sub$it/src/test/java/example/MyTest.java") << """
                    package example;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/resource/local/DefaultPathKeyFileStore.java

     * <p>
     * There is always at most one entry for a given key for this file store. If an entry already exists at the given path, it will be overwritten.
     * Paths can contain directory components, which will be created on demand.
     * <p>
     * This file store is self repairing in so far that any files partially written before a fatal error will be ignored and
     * removed at a later time.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		idx := indices[next]
    		demand := demands[idx]
    		if demand <= 0 {
    			continue
    		}
    		// `fullCapacityBite` is how much more capacity would be used
    		// if this and all following items get as much as this one
    		// is demanding.
    		fullCapacityBite := float64(count-next) * (demand - prevAlloc)
    		if fullCapacityBite > capacity {
    			break
    		}
    		prevAlloc = demand
    		alloc[idx] = demand
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

            public ConfigureOnDemandOption() {
                super(GRADLE_PROPERTY, BooleanCommandLineOptionConfiguration.create("configure-on-demand", "Configure necessary projects only. Gradle will attempt to reduce configuration time for large multi-project builds.", "Disables the use of configuration on demand.").incubating());
            }
    
            @Override
            public void applyTo(boolean value, StartParameterInternal settings, Origin origin) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top