Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 474 for convenient (0.17 sec)

  1. doc/next/6-stdlib/99-minor/go/ast/66339.md

    The new [Preorder] function returns a convenient iterator over all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 95 bytes
    - Viewed (0)
  2. platforms/core-configuration/core-kotlin-extensions/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
        id("gradlebuild.kotlin-dsl-sam-with-receiver")
    }
    
    description = "Kotlin extensions to make working with Gradle :core and family more convenient"
    
    dependencies {
        api(projects.core)
        api(projects.coreApi)
        api(projects.files)
        api(projects.hashing)
    
        api(libs.kotlinStdlib)
    
        implementation(projects.baseServices)
        implementation(projects.messaging)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 579 bytes
    - Viewed (0)
  3. docs/en/docs/reference/status.md

    It contains a group of named constants (variables) with integer status codes.
    
    For example:
    
    * 200: `status.HTTP_200_OK`
    * 403: `status.HTTP_403_FORBIDDEN`
    * etc.
    
    It can be convenient to quickly access HTTP (and WebSocket) status codes in your app, using autocompletion for the name without having to remember the integer status codes by memory.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 871 bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/testdata/httptest/main/main.go

    // A small test program that uses the net/http package. There is
    // nothing special about net/http here, this is just a convenient way
    // to pull in a lot of code.
    
    package main
    
    import (
    	"net/http"
    	"net/http/httptest"
    )
    
    type statusHandler int
    
    func (h *statusHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    	w.WriteHeader(int(*h))
    }
    
    func main() {
    	status := statusHandler(http.StatusNotFound)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:11 UTC 2019
    - 464 bytes
    - Viewed (0)
  5. manifests/helm-profiles/README.md

    # Helm Profiles
    
    This folder provides a variety of "profiles" for helm installation.
    While a user can just explicitly pass this with `--values/-f`.
    
    However, Istio also provides a feature to bundle these with the charts, which is convenient when installing from remote charts.
    For details, see `copy-templates` Makefile target, and `manifests/zzz_profile.yaml`.
    
    Any changes to this folder should have a `make copy-templates` applied afterwards.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 708 bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfigurationContainer.java

    /**
     * The set of {@link IvyConfiguration}s that will be included in the {@link IvyPublication}.
     *
     * Being a {@link org.gradle.api.NamedDomainObjectContainer}, a {@code IvyConfigurationContainer} provides
     * convenient methods for adding, querying, filtering, and applying actions to the set of {@link IvyConfiguration}s.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'ivy-publish'
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/runtime/import_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file and importx_test.go make it possible to write tests in the runtime
    // package, which is generally more convenient for testing runtime internals.
    // For tests that mostly touch public APIs, it's generally easier to write them
    // in the runtime_test package and export any runtime internals via
    // export_test.go.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. internal/http/close.go

    package http
    
    import (
    	"io"
    
    	xioutil "github.com/minio/minio/internal/ioutil"
    )
    
    // DrainBody close non nil response with any response Body.
    // convenient wrapper to drain any remaining data on response body.
    //
    // Subsequently this allows golang http RoundTripper
    // to reuse the same connection for future requests.
    func DrainBody(respBody io.ReadCloser) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/util.go

    limitations under the License.
    */
    
    package dynamiccertificates
    
    import (
    	"crypto/x509"
    	"fmt"
    	"strings"
    	"time"
    )
    
    // GetHumanCertDetail is a convenient method for printing compact details of certificate that helps when debugging
    // kube-apiserver usage of certs.
    func GetHumanCertDetail(certificate *x509.Certificate) string {
    	humanName := certificate.Subject.CommonName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 21 07:29:30 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifactSet.java

    import org.gradle.api.DomainObjectSet;
    
    /**
     * A Collection of {@link IvyArtifact}s to be included in an {@link IvyPublication}.
     *
     * Being a {@link DomainObjectSet}, an {@code IvyArtifactSet} provides convenient methods for querying, filtering, and applying actions to the set of {@link IvyArtifact}s.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'ivy-publish'
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top