Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,691 for identified (0.15 sec)

  1. src/cmd/go/internal/modcmd/graph.go

    	Long: `
    Graph prints the module requirement graph (with replacements applied)
    in text form. Each line in the output has two space-separated fields: a module
    and one of its requirements. Each module is identified as a string of the form
    path@version, except for the main module, which has no @version suffix.
    
    The -go flag causes graph to report the module graph as loaded by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/meta.go

    // fields.
    var DefaultMetaFactory = SimpleMetaFactory{}
    
    // SimpleMetaFactory provides default methods for retrieving the type and version of objects
    // that are identified with an "apiVersion" and "kind" fields in their JSON
    // serialization. It may be parameterized with the names of the fields in memory, or an
    // optional list of base structs to search for those fields in memory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/jit_compilation_pass_registration.cc

    // The EncapsulateSubgraphs pass must run after the MarkForCompilationPass. We
    // also need to run it after the graph been rewritten to have _Send nodes added
    // for fetches. Before the _Send nodes are added, fetch nodes are identified by
    // name, and encapsulation might remove that node from the graph.
    REGISTER_OPTIMIZATION(OptimizationPassRegistry::POST_REWRITE_FOR_EXEC, 50,
                          EncapsulateSubgraphsPass);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 11 21:53:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. pkg/apis/node/validation/validation.go

    	// Ensure uniquenes of tolerations.
    	tolerationSet := map[core.Toleration]bool{}
    	for i, t := range tolerations {
    		// listKey includes the toleration fields identified as listKeys in the API.
    		listKey := core.Toleration{
    			Key:      t.Key,
    			Operator: t.Operator,
    			Value:    t.Value,
    			Effect:   t.Effect,
    		}
    		if tolerationSet[listKey] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:08:24 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/integTest/groovy/org/gradle/internal/declarativedsl/ErrorHandlingOnReflectiveCallsSpec.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class ErrorHandlingOnReflectiveCallsSpec extends AbstractIntegrationSpec {
    
        def 'when reflective invocation fails the cause is identified correctly'() {
            given:
            file("build-logic/build.gradle") << """
                plugins {
                    id('java-gradle-plugin')
                }
                gradlePlugin {
                    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

            return foreignIdentifiedComponents.computeIfAbsent(projectIdentifier, this::copyComponentWithForeignId);
        }
    
        /**
         * Copes the component identified by {@code projectIdentifier}, except with its identifier replaced with the foreign counterpart.
         *
         * <p>Eventually, in Gradle 9.0, when {@link BuildIdentifier#isCurrentBuild()} is removed, all this logic can disappear.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. misc/ios/README

    will select the device:
    
    	GOOS=ios GOARCH=arm64 CGO_ENABLED=1 CC_FOR_TARGET=$(pwd)/../misc/ios/clangwrap.sh ./all.bash
    
    Note that the go_darwin_$GOARCH_exec wrapper uninstalls any existing app identified by
    the bundle id before installing a new app. If the uninstalled app is the last app by
    the developer identity, the device might also remove the permission to run apps from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 21:49:26 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

         *
         * @return a user-friendly hint about the location of the source, never {@code null}
         */
        @Nonnull
        String getLocation();
    
        /**
         * Returns a new source identified by a relative path. Implementation <strong>MUST</strong>
         * be able to accept <code>relative</code> parameter values that
         * <ul>
         * <li>use either / or \ file path separator,</li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h

        importer_ = std::move(importer);
      }
    
      void SetExporter(std::unique_ptr<TacExporter> exporter) {
        exporter_ = std::move(exporter);
      }
    
      // Returns pointer to the TargetHardware that is identified by 'hardware_name'
      // Returns NULL If no hardware with this name found.
      const tac::TargetHardware* GetTargetHardware(
          const std::string& hardware_name) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/line.go

    package objabi
    
    import (
    	"internal/buildcfg"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    )
    
    // WorkingDir returns the current working directory
    // (or "/???" if the directory cannot be identified),
    // with "/" as separator.
    func WorkingDir() string {
    	var path string
    	path, _ = os.Getwd()
    	if path == "" {
    		path = "/???"
    	}
    	return filepath.ToSlash(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top