Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 967 for demand (0.14 sec)

  1. pkg/test/echo/server/endpoint/http.go

    	}
    
    	return codes, nil
    }
    
    // code must be HTTP response code
    func validateCodeAndSlices(codecount string) (codeAndSlices, error) {
    	flavor := strings.Split(codecount, ":")
    
    	// Demand code or code:number
    	if len(flavor) == 0 || len(flavor) > 2 {
    		return codeAndSlices{http.StatusBadRequest, 9999},
    			fmt.Errorf("invalid %q (want code or code:count)", codecount)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	reqsGaugePair metrics.RatioedGaugePair
    
    	// Observer of number of seats occupied throughout execution
    	execSeatsObs metrics.RatioedGauge
    
    	// Integrator of seat demand, reset every CurrentCL adjustment period
    	seatDemandIntegrator fq.Integrator
    
    	// Gauge of seat demand / nominalCL
    	seatDemandRatioedGauge metrics.RatioedGauge
    
    	// seatDemandStats is derived from periodically examining the seatDemandIntegrator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  3. src/compress/bzip2/bzip2.go

    		// Any sequence of four equal bytes is followed by a length
    		// byte which contains the number of repeats of that byte to
    		// include. (The number of repeats can be zero.) Because we are
    		// decompressing on-demand our state is kept in the reader
    		// object.
    
    		if bz2.repeats > 0 {
    			buf[n] = byte(bz2.lastByte)
    			n++
    			bz2.repeats--
    			if bz2.repeats == 0 {
    				bz2.lastByte = -1
    			}
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * 2b. If we use shared lock, and we succeed in step 1., then we just hold the lock. We don't write anything to the information region
             * since multiple processes can acquire shared lock (due to that we currently also don't support on demand shared locks).<br>
             * 2.c If we fail, we throw a timeout exception.
             * <br><br>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/cache/secretcache.go

    //     certificates from Gateway/DestinationRule can also be served. This is done by parsing resource
    //     names in accordance with security.SdsCertificateConfig (file-cert: and file-root:).
    //   - On demand CSRs. This is used only for the `default` certificate. When this resource is
    //     requested, a CSR will be sent to the configured caClient.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        HISTORICAL_PERFORMANCE("Historical Performance", "Once a week: Run performance tests for multiple Gradle versions", "HistoricalPerformance"),
        EXPERIMENTAL_VFS_RETENTION("Experimental FS Watching", "On demand checks to run tests with file system watching enabled", "ExperimentalVfsRetention"),
        EXPERIMENTAL_PERFORMANCE("Experimental Performance", "Try out new performance test running", "ExperimentalPerformance");
    
        val id: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

                return controller.getMutableModel();
            }
    
            @Override
            public void ensureConfigured() {
                // Need to configure intermediate parent projects for configure-on-demand
                ProjectState parent = getBuildParent();
                if (parent != null) {
                    parent.ensureConfigured();
                }
                controller.ensureSelfConfigured();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

     * </pre>
     *
     * <p>{@link Rule} objects can be attached to the collection in order to respond to requests for objects by name
     * where no object with name exists in the collection. This mechanism can be used to create objects on demand.
     * For example: </p>
     *
     * <pre>
     * books.addRule('create any') { books.add(new Book(name: "gradle", title: null)) }
     * books.gradle.name == "gradle"
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/mvs.go

    // gives access to the comparison operation.
    //
    // It must be safe to call methods on a Reqs from multiple goroutines simultaneously.
    // Because a Reqs may read the underlying graph from the network on demand,
    // the MVS algorithms parallelize the traversal to overlap network delays.
    type Reqs interface {
    	// Required returns the module versions explicitly required by m itself.
    	// The caller must not modify the returned list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.pb.go

    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    // outbound traffic, as we only have L4 attributes to route based on. However,
    // they can be used for Gateways.
    // In this case, the key format will be "network/hostname".
    // These resources cannot be looked up on-demand.
    type Address struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top