Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 947 for ONCE (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    	// We add an explicit rule for endpoint-controller with high precedence
    	// to ensure that those calls won't get caught by the following
    	// <workload-leader-election> flow-schema.
    	//
    	// TODO(#80289): Get rid of this rule once we get rid of support for
    	//   using endpoints and configmaps objects for leader election.
    	SuggestedFlowSchemaEndpointsController = newFlowSchema(
    		"endpoint-controller", "workload-high", 150,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/watch_test.go

    }
    
    type fakeCachingObject struct {
    	obj runtime.Object
    
    	once sync.Once
    	raw  []byte
    	err  error
    }
    
    func (f *fakeCachingObject) CacheEncode(_ runtime.Identifier, encode func(runtime.Object, io.Writer) error, w io.Writer) error {
    	f.once.Do(func() {
    		buffer := bytes.NewBuffer(nil)
    		f.err = encode(f.obj, buffer)
    		f.raw = buffer.Bytes()
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 17:27:39 UTC 2023
    - 30K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typestring.go

    			if w.qf == nil && w.pkgInfo && !isExported(f.name) {
    				// note for embedded types, type name is field name, and "string" etc are lower case hence unexported.
    				pkgAnnotate = true
    				w.pkgInfo = false // only tag once
    			}
    
    			// This doesn't do the right thing for embedded type
    			// aliases where we should print the alias name, not
    			// the aliased type (see go.dev/issue/44410).
    			if !f.embedded {
    				w.string(f.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top