Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,111 for ONCE (0.11 sec)

  1. src/runtime/malloc_test.go

    		return fmt.Errorf("zero value")
    	}
    	le := func(thresh float64) func(any) error {
    		return func(x any) error {
    			// These sanity tests aren't necessarily valid
    			// with high -test.count values, so only run
    			// them once.
    			if testMemStatsCount > 1 {
    				return nil
    			}
    
    			if reflect.ValueOf(x).Convert(reflect.TypeOf(thresh)).Float() < thresh {
    				return nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1/generated.proto

      // indicating the signer failed to issue the certificate.
      //
      // Approved and Denied conditions are mutually exclusive.
      // Approved, Denied, and Failed conditions cannot be removed once added.
      //
      // Only one condition of a given type is allowed.
      optional string type = 1;
    
      // status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	New() runtime.Object
    
    	// Destroy cleans up its resources on shutdown.
    	// Destroy has to be implemented in thread-safe way and be prepared
    	// for being called more than once.
    	Destroy()
    }
    
    // Scoper indicates what scope the resource is at. It must be specified.
    // It is usually provided automatically based on your strategy.
    type Scoper interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    		err := fmt.Errorf("invalid upgrade response: status code %d", backendHTTPResponse.StatusCode)
    		klog.Errorf("Proxy upgrade error: %v", err)
    		h.Responder.Error(w, req, err)
    		return true
    	}
    
    	// Once the connection is hijacked, the ErrorResponder will no longer work, so
    	// hijacking should be the last step in the upgrade.
    	requestHijacker, ok := w.(http.Hijacker)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/intervals.go

    // This file defines an "Intervals" helper type that stores a
    // sorted sequence of disjoint ranges or intervals. An Intervals
    // example: { [0,5) [9-12) [100,101) }, which corresponds to the
    // numbers 0-4, 9-11, and 100. Once an Intervals object is created, it
    // can be tested to see if it has any overlap with another Intervals
    // object, or it can be merged with another Intervals object to form a
    // union of the two.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

        const PyFunctionLibrary* quantization_py_function_lib) {
      if (toco_flags.has_dump_graphviz_dir()) {
        TF_RETURN_IF_ERROR(DumpOpGraphToFile(
            module.get(),
            // rename once we enable the new converter feature flag.
            absl::StrCat(toco_flags.dump_graphviz_dir(), "/toco_AT_IMPORT.dot")));
      }
    
      mlir::TFL::PassConfig pass_config_copy = pass_config;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

                        program = program,
                        scriptHost = scriptHost,
                        scriptTemplateId = stage2SettingsTemplateId,
                        // localClassPathHash = emptyHashCode, // only applicable once we have accessors
                        sourceHash = sourceHash,
                        accessorsClassPath = ClassPath.EMPTY
                    )
                }
    
                program.loadSecondStageFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. src/net/http/response.go

    	"Content-Length":    true,
    	"Transfer-Encoding": true,
    	"Trailer":           true,
    }
    
    // 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/delete_test.go

    	"k8s.io/kubernetes/pkg/features"
    )
    
    // Test single call to syncVolume, expecting recycling to happen.
    // 1. Fill in the controller with initial data
    // 2. Call the syncVolume *once*.
    // 3. Compare resulting volumes with expected volumes.
    func TestDeleteSync(t *testing.T) {
    	const gceDriver = "pd.csi.storage.gke.io"
    	// Default enable the HonorPVReclaimPolicy feature gate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilability_check_util.h

        // auto clustering.
        // TODO(b/209813421): Enable tf.unique during
        // autoclustering once all failures are rfixed.
        bool allow_unique_op = true;
    
        // Whether ops that are marked as outside compiled are always considered
        // compilable.
        // TODO(b/191502757):  Make this behavior true by default and remove this
        // option once inference converter supports outside compilation.
        bool allow_outside_compiled = false;
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top