Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,997 for Reserve (1.56 sec)

  1. src/cmd/internal/obj/objfile.go

    	genFuncInfoSyms(ctxt)
    
    	w := writer{
    		Writer:  goobj.NewWriter(b),
    		ctxt:    ctxt,
    		pkgpath: objabi.PathToPrefix(ctxt.Pkgpath),
    	}
    
    	start := b.Offset()
    	w.init()
    
    	// Header
    	// We just reserve the space. We'll fill in the offsets later.
    	flags := uint32(0)
    	if ctxt.Flag_shared {
    		flags |= goobj.ObjFlagShared
    	}
    	if w.pkgpath == UnlinkablePkg {
    		flags |= goobj.ObjFlagUnlinkable
    	}
    	if w.pkgpath == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. pkg/dns/client/dns.go

    		// Note: After DialContext in ExchangeContext is called, this function cannot be cancelled by context.
    		cResponse, _, err := upstreamClient.ExchangeContext(ctx, req, upstream)
    		if err == nil {
    			// Only reserve first response and ignore others.
    			select {
    			case responseCh <- cResponse:
    			case <-ctx.Done():
    			}
    			return
    		}
    		scope.Infof("parallel querying upstream failure: %v", err)
    		select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static_test.go

    				tc.description, tc.expCSet, cset)
    		}
    	}
    }
    
    // above test cases are without kubelet --reserved-cpus cmd option
    // the following tests are with --reserved-cpus configured
    type staticPolicyTestWithResvList struct {
    	description     string
    	topo            *topology.CPUTopology
    	numReservedCPUs int
    	reserved        cpuset.CPUSet
    	stAssignments   state.ContainerCPUAssignments
    	stDefaultCPUSet cpuset.CPUSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      QuantState& bias_state = GetOperandQuantState(op, bias_index);
      if (!bias_state.IsEmpty()) {
        return bias_state.params;
      }
      std::vector<QuantizedType> op_types{};
      op_types.reserve(non_bias_operand_indices.size());
    
      int adjusted_quant_dim = -1;
      if (op->getNumOperands() > bias_index) {
        // Some kernels allow 1D bias, broadcasting it inside the kernel. In this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. src/encoding/gob/type.go

    	tBytes     = bootstrapType("bytes", (*[]byte)(nil))
    	tString    = bootstrapType("string", (*string)(nil))
    	tComplex   = bootstrapType("complex", (*complex128)(nil))
    	tInterface = bootstrapType("interface", (*any)(nil))
    	// Reserve some Ids for compatible expansion
    	tReserved7 = bootstrapType("_reserved1", (*struct{ r7 int })(nil))
    	tReserved6 = bootstrapType("_reserved1", (*struct{ r6 int })(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_2x.md

        top-level class and `Credential` is replaced with a utility class called
        `Credentials`.
    
     *  **OkHttpClient.getFollowProtocolRedirects() renamed to
        getFollowSslRedirects()**. We reserve the word _protocol_ for the HTTP
        version being used (HTTP/1.1, HTTP/2). The old name of this method was
        misleading; it was always used to configure redirects between `https://` and
        `http://` schemes.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  7. src/net/dial_test.go

    	}
    	for _, network := range []string{"tcp", "tcp4", "tcp6"} {
    		t.Run(network, func(t *testing.T) {
    			if !testableNetwork(network) {
    				t.Skipf("skipping: can't listen on %s", network)
    			}
    			// Reserve a local port till the end of the
    			// test by opening a listener and connecting to
    			// it using Dial.
    			ln := newLocalListener(t, network)
    			addr := ln.Addr().String()
    			conn1, err := Dial(network, addr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

    };
    
    template <typename InputContainer>
    std::vector<Type> GetValueTypes(const InputContainer& input) {
      // Convert a list of mlir::Value's into a list of mlir::Type's
      std::vector<Type> types;
      types.reserve(input.size());
      for (auto val : input) types.push_back(val.getType());
      return types;
    }
    
    bool IsResourceType(Type val_type) {
      if (auto tensor_type = mlir::dyn_cast<mlir::TensorType>(val_type)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/cache.go

    	// and we will be able to detect (some) incomplete writes as files containing trailing NUL bytes.
    	if err := f.Truncate(0); err != nil {
    		return err
    	}
    	// Reserve the final size and zero-fill.
    	if err := f.Truncate(int64(buf.Len())); err != nil {
    		return err
    	}
    	// Write the actual contents. If this fails partway through,
    	// the remainder of the file should remain as zeroes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/obj7.go

    	p.From.Class = 0
    	p.To.Class = 0
    
    	// Previously we rewrote $0 to ZR, but we have now removed this change.
    	// In order to be compatible with some previous legal instruction formats,
    	// reserve the previous conversion for some specific instructions.
    	if p.From.Type == obj.TYPE_CONST && p.From.Offset == 0 && zrReplace[p.As] {
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = REGZERO
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
Back to top