Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 551 for freeze (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProcessOutputValueSource.java

             */
            ListProperty<String> getCommandLine();
    
            // The ExecSpec's environment can be configured in two ways. First is to append some
            // variables to the current environment. We don't want to freeze the whole environment as an
            // input in this case to mimic the behavior with configuration cache being disabled. Thus,
            // there are two properties on these Parameters: full environment is used when the caller
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

        const auto status = quantization::PreprocessAndFreezeGraph(
            module, module.getContext(), session);
        if (!status.ok()) {
          return status_handler.Combine(
              absl::InternalError("Failed to preprocess & freeze TF graph."));
        }
    
        // TODO: b/264218457 - Refactor the component below once StableHLO Quantizer
        // can run DRQ. Temporarily using TF Quantization for StableHLO DRQ.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. tensorflow/cc/tools/freeze_saved_model.cc

    }
    
    // Looks up the variable handle that provides input to node with node_name,
    // and returns the handle name if the handle corresponds to a variable that we
    // want to freeze (i.e. its name is contained in variable_node_names). If there
    // is no such handle in the graph (or we do not want to save that variable)
    // then NotFound error is returned.
    StatusOr<string> GetHandleNameIfNeedsToFreeze(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/maps/maps_test.go

    			// 13 more (26 total) fill up 4 buckets
    			// 1 more to start the 4->8 bucket grow
    			for i := 0; i < 7+5+13+1; i++ {
    				m[K{float64(i) + 1}] = V{}
    			}
    		}
    
    		// Clone m, which should freeze the map's contents.
    		c := Clone(m)
    
    		// Update m with new key and value.
    		k2, v2 := k1, v1
    		k2[0] = negZero
    		v2[0] = 1.0
    		m[k2] = v2
    
    		// Make sure c still has its old key and value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 17:05:56 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. src/sort/sort_test.go

    	}
    	d.ncmp++
    
    	if d.data[i] == d.gas && d.data[j] == d.gas {
    		if i == d.candidate {
    			// freeze i
    			d.data[i] = d.nsolid
    			d.nsolid++
    		} else {
    			// freeze j
    			d.data[j] = d.nsolid
    			d.nsolid++
    		}
    	}
    
    	if d.data[i] == d.gas {
    		d.candidate = i
    	} else if d.data[j] == d.gas {
    		d.candidate = j
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. src/internal/coverage/encodecounter/encode.go

    	}
    	hdrsz := uint32(len(ws.BytesWritten()))
    
    	// Write string table and args to a byte slice (since we need
    	// to capture offsets at various points), then emit the slice
    	// once we are done.
    	cfw.stab.Freeze()
    	if err := cfw.stab.Write(ws); err != nil {
    		return err
    	}
    	cfw.csh.StrTabLen = uint32(len(ws.BytesWritten())) - hdrsz
    
    	akeys := make([]string, 0, len(args))
    	for k := range args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    // ----------
    // Supports following actions:
    // - restart (restarts all the MinIO instances in a setup)
    // - stop (stops all the MinIO instances in a setup)
    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    func (a adminAPIHandlers) ServiceHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	vars := mux.Vars(r)
    	action := vars["action"]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. cmd/server-main.go

    // Copyright (c) 2015-2024 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. tensorflow/cc/tools/freeze_saved_model_test.cc

        // Test freezing a graph with some variables that are needed and not needed
        // by
        // the outputs in the SignatureDef. The resulting graph should only freeze
        // dependent variables.
        SavedModelBundle saved_model_bundle;
        GraphDef graph_def;
        Scope scope = Scope::NewRootScope();
        Output a = ops::Const(scope.WithOpName("a"), 10.0f, {});
        Output read_var;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  10. src/syscall/js/js_test.go

    	if proto.Equal(o) {
    		t.Errorf("object equals to its prototype")
    	}
    }
    
    func TestFrozenObject(t *testing.T) {
    	o := js.Global().Call("eval", "(function () { let o = new Object(); o.field = 5; Object.freeze(o); return o; })()")
    	want := 5
    	if got := o.Get("field").Int(); want != got {
    		t.Errorf("got %#v, want %#v", got, want)
    	}
    }
    
    func TestEqual(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top