Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,226 for internal2 (0.17 sec)

  1. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

    import org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal;
    import org.gradle.api.internal.component.SoftwareComponentContainerInternal;
    import org.gradle.api.internal.plugins.DefaultArtifactPublicationSet;
    import org.gradle.api.internal.plugins.DslObject;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.tasks.JvmConstants;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <!-- Don't require api docs for projects only used internally -->
        <suppress checks="Javadoc.*"
                  files=".*[/\\]internal-.+[/\\]src[/\\]main[/\\].+"/>
    
        <!-- JavaScript plugin is incubating -->
        <suppress checks="Javadoc.*"
                  files=".*[/\\]javascript[/\\].+"/>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/bigger-applications.md

    * The same with `app/routers/users.py`, it's another submodule: `app.routers.users`.
    * There's also a subdirectory `app/internal/` with another file `__init__.py`, so it's another "Python subpackage": `app.internal`.
    * And the file `app/internal/admin.py` is another submodule: `app.internal.admin`.
    
    <img src="/img/tutorial/bigger-applications/package.svg">
    
    The same file structure with comments:
    
    ```
    .
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/amd64/asm.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package amd64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"log"
    )
    
    func PADDR(x uint32) uint32 {
    	return x &^ 0x80000000
    }
    
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/build.go

    	"context"
    	"errors"
    	"flag"
    	"fmt"
    	"go/build"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/search"
    	"cmd/go/internal/trace"
    )
    
    var CmdBuild = &base.Command{
    	UsageLine: "go build [-o output] [build flags] [packages]",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

    import org.gradle.cache.internal.TestCrossBuildInMemoryCacheFactory
    import org.gradle.internal.BiAction
    import org.gradle.internal.Describables
    import org.gradle.internal.instantiation.PropertyRoleAnnotationHandler
    import org.gradle.util.internal.ConfigureUtil
    import spock.lang.Issue
    
    import java.util.function.BiFunction
    
    import static AsmBackedClassGeneratorTest.Bean
    import static AsmBackedClassGeneratorTest.InterfaceBean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/concepts.md

    But for now, let's check these important **conceptual ideas**. These concepts also apply to any other type of web API. 💡
    
    ## Security - HTTPS
    
    In the [previous chapter about HTTPS](https.md){.internal-link target=_blank} we learned about how HTTPS provides encryption for your API.
    
    We also saw that HTTPS is normally provided by a component **external** to your application server, a **TLS Termination Proxy**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    // Package internal/counter implements the internals of the public counter package.
    // In addition to the public API, this package also includes APIs to parse and
    // manage the counter files, needed by the upload package.
    package counter
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"strings"
    	"sync/atomic"
    )
    
    // Note: not using internal/godebug, so that internal/godebug can use internal/counter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/runtime/netpoll.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix || (js && wasm) || wasip1 || windows
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // Integrated network poller (platform-independent part).
    // A particular implementation (epoll/kqueue/port/AIX/Windows)
    // must define the following functions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

    import org.gradle.api.specs.Spec;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Factory;
    import org.gradle.internal.InternalTransformer;
    import org.gradle.internal.IoActions;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.io.StreamByteBuffer;
    import org.gradle.util.internal.CollectionUtils;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top