Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 218 for intereses (0.09 sec)

  1. docs/es/docs/tutorial/first-steps.md

    !!! info "Información"
        Un "path" también se conoce habitualmente como "endpoint", "route" o "ruta".
    
    Cuando construyes una API, el "path" es la manera principal de separar los <abbr title="en inglés: separation of concerns">"intereses"</abbr> y los "recursos".
    
    #### Operación
    
    "Operación" aquí se refiere a uno de los "métodos" de HTTP.
    
    Uno como:
    
    * `POST`
    * `GET`
    * `PUT`
    * `DELETE`
    
    ...y los más exóticos:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

             * the project already contains the plugin executions induced by the project's packaging type. Remember, all
             * phases of interest and only those are in the lifecycle mapping, if a phase has no value in the map, we are
             * not interested in any of the executions bound to it.
             */
    
            for (Plugin plugin : project.getBuild().getPlugins()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/metrics_test.go

    	apis := fuzzAPIGroups(1, 3, 10)
    	manager.SetGroups(apis.Items)
    
    	interests := []string{"aggregator_discovery_aggregation_count_total"}
    
    	_, _, _ = fetchPath(manager, "application/json", discoveryPath, "")
    	// A single fetch should aggregate and increment regeneration counter.
    	if err := testutil.GatherAndCompare(legacyregistry.DefaultGatherer, formatExpectedMetrics(1), interests...); err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 17:24:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	insts      map[uint64]instructionInfo // Instructions of interest (keyed by address).
    
    	// Set of function names that we are interested in (because they had
    	// a sample and match sym).
    	interest map[string]bool
    
    	// Mapping from system function names to printable names.
    	prettyNames map[string]string
    }
    
    // addrInfo holds information for an address we are interested in.
    type addrInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/README.md

    BoringCrypto (the core of [BoringSSL](https://boringssl.googlesource.com/boringssl/))
    for various crypto primitives, in furtherance of some work related to FIPS 140.
    We have heard that some external users of Go would be
    interested in this code as well, so we have published this code
    here in the main Go repository behind the setting GOEXPERIMENT=boringcrypto.
    
    Use of GOEXPERIMENT=boringcrypto outside Google is _unsupported_.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. testing/performance/docs/performance-bisect.md

    ## Modify test for regression search
    
    First, you should change the test so that
     - only the version you are interested in is used as a reference
     - only the test you are interested in is executed
     - tighten the regression limits to get significant results
     - only search for memory/execution time regressions depending on what you are interested in
     
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionStructureVisitor.java

     */
    public interface FileCollectionStructureVisitor {
        enum VisitType {
            // Visitor is interested in the contents of the collection
            Visit,
            // Visitor is not interested in the contents of the collection, but would like to receive the source and other metadata
            NoContents
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTestSpecCrossVersionSpec.groovy

            assertTestExecuted(className: 'example2.MyOtherTest2', methodName: 'baz', task: ':secondTest')
    
            when:
            events.clear()
            stdout.reset() // we are interested in the output of the second build only
            launchTests { TestLauncher launcher ->
                launcher.withArguments("--configuration-cache")
                launcher.withTestsFor { TestSpecs specs ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. src/runtime/netpoll_solaris.go

    // nobody will tell us anymore.
    //
    // Beside calling runtime·netpollopen, the networking code paths
    // will call runtime·netpollarm each time goroutines are interested
    // in doing network I/O. Because now we know what kind of I/O we
    // are interested in (reading/writing), we can call port_associate
    // passing the correct type of event set (POLLIN/POLLOUT). As we made
    // sure to have already associated the file descriptor with the port,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cover_sync_atomic_import.txt

    # In addition to the above, test to make sure there is no funny
    # business if we try "go test -cover" in atomic mode targeting
    # sync/atomic itself (see #57445). Just a short test run is needed
    # since we're mainly interested in making sure the test builds and can
    # execute at least one test.
    
    go test -short -covermode=atomic -run=TestStoreInt64 sync/atomic
    go test -short -covermode=atomic -run=TestAnd8 internal/runtime/atomic
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 00:18:30 UTC 2024
    - 1011 bytes
    - Viewed (0)
Back to top