Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,392 for toolID (0.24 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/ContextAwareJavaCompiler.java

    import com.sun.source.util.JavacTask;
    import com.sun.tools.javac.util.Context;
    
    import javax.annotation.Nullable;
    import javax.tools.DiagnosticListener;
    import javax.tools.JavaCompiler;
    import javax.tools.JavaFileManager;
    import javax.tools.JavaFileObject;
    import java.io.Writer;
    
    /**
     * This interface extends the standard {@link JavaCompiler} interface with {@link com.sun.tools.javac.api.JavacTool}'s internal method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:31:16 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/appends/appends.go

    // if there is only one variable in append.
    package appends
    
    import (
    	_ "embed"
    	"go/ast"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/go/types/typeutil"
    )
    
    //go:embed doc.go
    var doc string
    
    var Analyzer = &analysis.Analyzer{
    	Name:     "appends",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/jpms/ModuleJarFixture.groovy

     */
    
    package org.gradle.test.fixtures.jpms
    
    import javax.tools.Diagnostic
    import javax.tools.DiagnosticCollector
    import javax.tools.FileObject
    import javax.tools.ForwardingJavaFileManager
    import javax.tools.JavaCompiler
    import javax.tools.JavaFileObject
    import javax.tools.SimpleJavaFileObject
    import javax.tools.StandardJavaFileManager
    import javax.tools.ToolProvider
    import java.util.jar.JarEntry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/concepts.md

    And there has to be something in charge of **renewing the HTTPS certificates**, it could be the same component or it could be something different.
    
    ### Example Tools for HTTPS
    
    Some of the tools you could use as a TLS Termination Proxy are:
    
    * Traefik
        * Automatically handles certificates renewals ✨
    * Caddy
        * Automatically handles certificates renewals ✨
    * Nginx
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // Package analysisflags defines helpers for processing flags of
    // analysis driver tools.
    package analysisflags
    
    import (
    	"crypto/sha256"
    	"encoding/gob"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"go/token"
    	"io"
    	"log"
    	"os"
    	"strconv"
    	"strings"
    
    	"golang.org/x/tools/go/analysis"
    )
    
    // flags common to all {single,multi,unit}checkers.
    var (
    	JSON    = false // -json
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. ci/official/utilities/code_check_full.bats

      do_external_licenses_check \
        "//tensorflow/tools/pip_package:wheel" \
        "//tensorflow/tools/pip_package:licenses"
    }
    
    @test "Libtensorflow generated license includes all dependencies' licenses" {
      do_external_licenses_check \
        "//tensorflow:libtensorflow.so" \
        "//tensorflow/tools/lib_package:clicenses_generate"
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/defers/defers.go

    // license that can be found in the LICENSE file.
    
    package defers
    
    import (
    	_ "embed"
    	"go/ast"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/go/types/typeutil"
    )
    
    //go:embed doc.go
    var doc string
    
    // Analyzer is the defers analyzer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/fix/gotypes_test.go

    package main
    
    func init() {
    	addTestCases(gotypesTests, gotypes)
    }
    
    var gotypesTests = []testCase{
    	{
    		Name: "gotypes.0",
    		In: `package main
    
    import "golang.org/x/tools/go/types"
    import "golang.org/x/tools/go/exact"
    
    var _ = exact.Kind
    
    func f() {
    	_ = exact.MakeBool(true)
    }
    `,
    		Out: `package main
    
    import "go/types"
    import "go/constant"
    
    var _ = constant.Kind
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-fileDependencies/groovy/build.gradle

        deploymentTools(fileTree('tools') { include '*.exe' })
    }
    // end::file-dependencies[]
    
    tasks.register('createLibs') {
        def projectDir = layout.projectDirectory
        doLast {
            projectDir.file('ant').asFile.mkdirs()
            projectDir.file('libs').asFile.mkdirs()
            projectDir.file('tools').asFile.mkdirs()
            projectDir.file('ant/antcontrib.jar').asFile.createNewFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. .gitignore

    /xla_configure.bazelrc
    /bazel-*
    /bazel_pip
    /tools/python_bin_path.sh
    /tensorflow/tools/git/gen
    /pip_test
    /_python_build
    *.pyc
    __pycache__
    *.swp
    .vscode/
    cmake_build/
    tensorflow/contrib/cmake/_build/
    .idea/**
    /build/
    [Bb]uild/
    /build_output/
    /tensorflow/core/util/version_info.cc
    /tensorflow/python/framework/fast_tensor_util.cpp
    /tensorflow/lite/gen/**
    /tensorflow/lite/tools/make/downloads/**
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 22:28:59 UTC 2024
    - 934 bytes
    - Viewed (0)
Back to top