Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for indices (0.29 sec)

  1. src/cmd/go/internal/modload/load.go

    	TidyCompatibleVersion string
    
    	// VendorModulesInGOROOTSrc indicates that if we are within a module in
    	// GOROOT/src, packages in the module's vendor directory should be resolved as
    	// actual module dependencies (instead of standard-library packages).
    	VendorModulesInGOROOTSrc bool
    
    	// ResolveMissingImports indicates that we should attempt to add module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    // segment which represents a contiguous region of free and unscavenged memory.
    //
    // searchIdx indicates the page index within this chunk to start the search, but
    // note that findScavengeCandidate searches backwards through the pallocData. As
    // a result, it will return the highest scavenge candidate in address order.
    //
    // min indicates a hard minimum size and alignment for runs of pages. That is,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    // TLS Client Authentication.
    type ClientAuthType int
    
    const (
    	// NoClientCert indicates that no client certificate should be requested
    	// during the handshake, and if any certificates are sent they will not
    	// be verified.
    	NoClientCert ClientAuthType = iota
    	// RequestClientCert indicates that a client certificate should be requested
    	// during the handshake, but does not require that the client send any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    	return active, metrics.JobSyncActionTracking, nil
    }
    
    // getPodCreationInfoForIndependentIndexes returns a sub-list of all indexes
    // to create that contains those which can be already created. In case no indexes
    // are ready to create pods, it returns the lowest remaining time to create pods
    // out of all indexes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      auto BuildUnpackIndexes =
          [&loop_var_map](std::vector<Value>& prototype_vals) {
            std::vector<int> indexes;
            indexes.reserve(prototype_vals.size());
            for (auto prototype_val : prototype_vals)
              indexes.push_back(loop_var_map[prototype_val]);
            return indexes;
          };
      auto loop_operands_indexes_im2 = BuildUnpackIndexes(loop_operands_0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    }
    
    func (u *unwinder) valid() bool {
    	return u.frame.pc != 0
    }
    
    // resolveInternal fills in u.frame based on u.frame.fn, pc, and sp.
    //
    // innermost indicates that this is the first resolve on this stack. If
    // innermost is set, isSyscall indicates that the PC/SP was retrieved from
    // gp.syscall*; this is otherwise ignored.
    //
    // On entry, u.frame contains:
    //   - fn is the running function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    	// extension when parsing a CRL.
    	Number *big.Int
    
    	// ThisUpdate is used to populate the thisUpdate field in the CRL, which
    	// indicates the issuance date of the CRL.
    	ThisUpdate time.Time
    	// NextUpdate is used to populate the nextUpdate field in the CRL, which
    	// indicates the date by which the next CRL will be issued. NextUpdate
    	// must be greater than ThisUpdate.
    	NextUpdate time.Time
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    	}, 30*time.Second, p.stop)
    }
    
    // queueingStrategy indicates how the scheduling queue should enqueue the Pod from unschedulable pod pool.
    type queueingStrategy int
    
    const (
    	// queueSkip indicates that the scheduling queue should skip requeuing the Pod to activeQ/backoffQ.
    	queueSkip queueingStrategy = iota
    	// queueAfterBackoff indicates that the scheduling queue should requeue the Pod after backoff is completed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// requireStructuralSchema indicates that any schemas present must be structural
    	requireStructuralSchema bool
    	// requirePrunedDefaults indicates that defaults must be pruned
    	requirePrunedDefaults bool
    	// requireAtomicSetType indicates that the items type for a x-kubernetes-list-type=set list must be atomic.
    	requireAtomicSetType bool
    	// requireMapListKeysMapSetValidation indicates that:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. src/net/http/request.go

    // Is lets http.ErrNotSupported match errors.ErrUnsupported.
    func (pe *ProtocolError) Is(err error) bool {
    	return pe == ErrNotSupported && err == errors.ErrUnsupported
    }
    
    var (
    	// ErrNotSupported indicates that a feature is not supported.
    	//
    	// It is returned by ResponseController methods to indicate that
    	// the handler does not support the method, and by the Push method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top