Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 403 for Discover (0.16 sec)

  1. src/internal/coverage/rtcov/rtcov.go

    	// blobs for the running program.
    	List []CovMetaBlob
    
    	// PkgMap records mappings from hard-coded package IDs to
    	// slots in the List above.
    	PkgMap map[int]int
    
    	// Set to true if we discover a package mapping glitch.
    	hardCodedListNeedsUpdating bool
    }
    
    // AddMeta is invoked during package "init" functions by the
    // compiler when compiling for coverage instrumentation; here 'p' is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/api_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions": {
            "description": "APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go

    	last := 0
    	for i := 0; i < len(name); i++ {
    		if name[i] == '.' {
    			parts = append(parts, name[last:i])
    			last = i + 1
    		}
    	}
    	parts = append(parts, name[last:])
    
    	mib := []int32{}
    	// Discover the nodes and construct the MIB OID.
    	for partno, part := range parts {
    		nodes, err := sysctlNodes(mib)
    		if err != nil {
    			return nil, err
    		}
    		for _, node := range nodes {
    			n := make([]byte, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  4. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

      val testEngine = buildTestEngine()
      val filters = listOf<PostDiscoveryFilter>()
      val discoveryOrchestrator = EngineDiscoveryOrchestrator(listOf(testEngine), filters)
      val discovered = discoveryOrchestrator.discover(request, EngineDiscoveryOrchestrator.Phase.EXECUTION)
    
      return discovered.getEngineTestDescriptor(testEngine).descendants.toList()
    }
    
    /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ManagedModelCreationRuleExtractor.java

                } else {
                    registration.action(ModelActionRole.Discover, Collections.singletonList(ModelReference.of(NODE_INITIALIZER_REGISTRY)), new BiAction<MutableModelNode, List<ModelView<?>>>() {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/index.md

            * `password`: some next chapters will cover examples of this.
    * `openIdConnect`: has a way to define how to discover OAuth2 authentication data automatically.
        * This automatic discovery is what is defined in the OpenID Connect specification.
    
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/StructNodeInitializer.java

        public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
            return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
                .put(ModelActionRole.Discover, DirectNodeInputUsingModelAction.of(subject, descriptor,
                    Arrays.<ModelReference<?>>asList(
                        ModelReference.of(ManagedProxyFactory.class),
                        ModelReference.of(TypeConverter.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis_openapi.json

                "version": "v1"
              }
            ]
          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList": {
            "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/AbstractIterator.java

     * without changing the iterator's state, using the {@link #hasNext} method. But many data sources,
     * such as {@link java.io.Reader#read()}, do not expose this information; the only way to discover
     * whether there is any data left is by trying to retrieve it. These types of data sources are
     * ordinarily difficult to write iterators for. But using this class, one must implement only the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 18 02:04:10 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistrations.java

                if (nodeInitializer != null) {
                    actions.putAll(nodeInitializer.getActions(reference, descriptor));
                }
                if (!projections.isEmpty()) {
                    action(ModelActionRole.Discover, AddProjectionsAction.of(reference, descriptor, projections));
                }
                return new DefaultModelRegistration(reference.getPath(), descriptor, hidden, actions);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top