Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for indices (0.64 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. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"namespaced":         "namespaced indicates if a resource is namespaced or not.",
    	"group":              "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // The singularName is more correct for reporting status on a single item and both singular and plural are allowed
      // from the kubectl CLI interface.
      optional string singularName = 6;
    
      // namespaced indicates if a resource is namespaced or not.
      optional bool namespaced = 2;
    
      // group is the preferred group of the resource.  Empty implies the group of the containing resource list.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // The singularName is more correct for reporting status on a single item and both singular and plural are allowed
      // from the kubectl CLI interface.
      optional string singularName = 6;
    
      // namespaced indicates if a resource is namespaced or not.
      optional bool namespaced = 2;
    
      // group is the preferred group of the resource.  Empty implies the group of the containing resource list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. 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)
Back to top