Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 347 for convenient (0.18 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenArtifactSet.java

    import org.gradle.api.DomainObjectSet;
    
    /**
     * A Collection of {@link MavenArtifact}s to be included in a {@link MavenPublication}.
     *
     * Being a {@link DomainObjectSet}, a {@code MavenArtifactSet} provides convenient methods for querying, filtering, and applying actions to the set of {@link MavenArtifact}s.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'maven-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)
  10. src/cmd/vendor/golang.org/x/text/language/coverage.go

    // Tags always returns nil.
    func (s allSubtags) Tags() []Tag {
    	return nil
    }
    
    // coverage is used by NewCoverage which is used as a convenient way for
    // creating Coverage implementations for partially defined data. Very often a
    // package will only need to define a subset of slices. coverage provides a
    // convenient way to do this. Moreover, packages using NewCoverage, instead of
    // their own implementation, will not break if later new slice types are added.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top