Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 472 for toolID (0.1 sec)

  1. src/cmd/go/internal/work/buildid.go

    	return buildID[strings.LastIndex(buildID, buildIDSeparator)+1:]
    }
    
    // toolID returns the unique ID to use for the current copy of the
    // named tool (asm, compile, cover, link).
    //
    // It is important that if the tool changes (for example a compiler bug is fixed
    // and the compiler reinstalled), toolID returns a different string, so that old
    // package archives look stale and are rebuilt (with the fixed compiler).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    	backgroundSh *Shell // Shell that per-Action Shells are derived from
    
    	exec      sync.Mutex
    	readySema chan bool
    	ready     actionQueue
    
    	id           sync.Mutex
    	toolIDCache  map[string]string // tool name -> tool ID
    	buildIDCache map[string]string // file name -> build ID
    }
    
    // NOTE: Much of Action would not need to be exported if not for test.
    // Maybe test functionality should move into this package too?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api;
    
    import javax.tools.DocumentationTool;
    import javax.tools.JavaFileManager;
    import javax.tools.StandardLocation;
    
    import java.io.File;
    import java.nio.file.Path;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.StringJoiner;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	"reflect"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/internal/analysisflags"
    	"golang.org/x/tools/internal/analysisinternal"
    	"golang.org/x/tools/internal/facts"
    	"golang.org/x/tools/internal/versions"
    )
    
    // A Config describes a compilation unit to be analyzed.
    // It is provided to the tool in a JSON-encoded file
    // whose name ends with ".cfg".
    type Config struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tests/preload_test.go

    			Manager: &User{
    				Name: "Alexis Manager",
    				Tools: []Tools{
    					{Name: "Alexis Tool 1"},
    					{Name: "Alexis Tool 2"},
    				},
    			},
    		},
    		{
    			Name: "TestMergeNestedPreloadWithNestedJoin-2",
    			Manager: &User{
    				Name: "Jinzhu Manager",
    				Tools: []Tools{
    					{Name: "Jinzhu Tool 1"},
    					{Name: "Jinzhu Tool 2"},
    				},
    			},
    		},
    	}
    
    	DB.Create(&users)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cfg/cfg.go

    //
    // It does this by looking for the path/pkg/tool directory,
    // which is necessary for useful operation of the cmd/go tool,
    // and is not typically present in a GOPATH.
    //
    // There is a copy of this code in x/tools/cmd/godoc/goroot.go.
    func isGOROOT(path string) bool {
    	stat, err := os.Stat(filepath.Join(path, "pkg", "tool"))
    	if err != nil {
    		return false
    	}
    	return stat.IsDir()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/BUILD

            "//tensorflow/core/graph/regularization:util",
            "//tensorflow/core/util/tensor_bundle:naming",
            "//tensorflow/tools/proto_splitter:chunk_proto_cc",
            "//tensorflow/tools/proto_splitter:merge",
            "//tensorflow/tools/proto_splitter/cc:util",
            "@com_google_absl//absl/status",
            "@com_google_absl//absl/status:statusor",
            "@com_google_absl//absl/strings",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. docs/en/docs/alternatives.md

    ## Intro
    
    **FastAPI** wouldn't exist if not for the previous work of others.
    
    There have been many tools created before that have helped inspire its creation.
    
    I have been avoiding the creation of a new framework for several years. First I tried to solve all the features covered by **FastAPI** using many different frameworks, plug-ins, and tools.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. docs/de/docs/alternatives.md

    **FastAPI** würde ohne die frühere Arbeit anderer nicht existieren.
    
    Es wurden zuvor viele Tools entwickelt, die als Inspiration für seine Entwicklung dienten.
    
    Ich habe die Schaffung eines neuen Frameworks viele Jahre lang vermieden. Zuerst habe ich versucht, alle von **FastAPI** abgedeckten Funktionen mithilfe vieler verschiedener Frameworks, Plugins und Tools zu lösen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. hack/make-rules/test.sh

      junit_xml_filename="${junit_filename_prefix}.xml"
    
      if ! command -v gotestsum >/dev/null 2>&1; then
        kube::log::status "gotestsum not found; installing from ./hack/tools"
        go -C "${KUBE_ROOT}/hack/tools" install gotest.tools/gotestsum
      fi
      gotestsum --junitfile "${junit_xml_filename}" --raw-command cat "${junit_filename_prefix}"*.stdout
      if [[ ! ${KUBE_KEEP_VERBOSE_TEST_OUTPUT} =~ ^[yY]$ ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top