Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for moduleB (0.21 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      FuncOp main_fn = module.lookupSymbol<FuncOp>("main");
      if (!main_fn) {
        int entry_func_count = 0;
        for (auto fn : module.getOps<FuncOp>()) {
          auto attrs = fn->getAttrOfType<mlir::DictionaryAttr>("tf.entry_function");
          if (attrs && !attrs.empty()) {
            ++entry_func_count;
          }
        }
    
        // Verify that module has a least one enrty function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tests/go.mod

    module gorm.io/gorm/tests
    
    go 1.18
    
    require (
    	github.com/google/uuid v1.6.0
    	github.com/jinzhu/now v1.1.5
    	github.com/lib/pq v1.10.9
    	github.com/stretchr/testify v1.9.0
    	gorm.io/driver/mysql v1.5.7
    	gorm.io/driver/postgres v1.5.9
    	gorm.io/driver/sqlite v1.5.6
    	gorm.io/driver/sqlserver v1.5.3
    	gorm.io/gorm v1.25.10
    )
    
    require (
    	filippo.io/edwards25519 v1.1.0 // indirect
    	github.com/davecgh/go-spew v1.1.1 // indirect
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

            if (gradleInstallation == null) {
                // When not running from a Gradle distro, need the daemon main jar and the daemon server implementation plus the search path to look for other modules
                classpath = registry.getModule("gradle-daemon-server").getAllRequiredModulesClasspath();
                classpath = classpath.plus(registry.getModule("gradle-daemon-main").getImplementationClasspath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/go.mod

    // This is a generated file. Do not edit directly.
    
    module k8s.io/api
    
    go 1.22.0
    
    require (
    	github.com/gogo/protobuf v1.3.2
    	github.com/stretchr/testify v1.8.4
    	k8s.io/apimachinery v0.0.0
    )
    
    require (
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
    	github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/golang/protobuf v1.5.4 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	if cfg.BuildTrimpath {
    		// When -trimpath is used with a package built from the module cache,
    		// its debug information refers to the module path and version
    		// instead of the directory.
    		if p.Module != nil {
    			fmt.Fprintf(h, "module %s@%s\n", p.Module.Path, p.Module.Version)
    		}
    	} else if p.Goroot {
    		// The Go compiler always hides the exact value of $GOROOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. pilot/pkg/features/pilot.go

    	WasmRemoteLoadConversion = env.Register("ISTIO_AGENT_ENABLE_WASM_REMOTE_LOAD_CONVERSION", true,
    		"If enabled, Istio agent will intercept ECDS resource update, downloads Wasm module, "+
    			"and replaces Wasm module remote load with downloaded local module file.").Get()
    
    	PilotJwtPubKeyRefreshInterval = env.Register(
    		"PILOT_JWT_PUB_KEY_REFRESH_INTERVAL",
    		20*time.Minute,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. prow/release-commit.sh

    docker: ${DOCKER_HUB}
    directory: ${WORK_DIR}
    ignoreVulnerability: true
    dependencies:
    ${DEPENDENCIES:-$(cat <<EOD
      istio:
        localpath: ${ROOT}
      api:
        git: https://github.com/istio/api
        auto: modules
      proxy:
        git: https://github.com/istio/proxy
        auto: deps
      client-go:
        git: https://github.com/istio/client-go
        branch: master
      test-infra:
        git: https://github.com/istio/test-infra
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/build-init/build.gradle.kts

        // TODO Figure out why and fix it - Move the two deps below to implementation and api and run ProjectTheExtensionCrossVersionSpec
        compileOnly(libs.eclipseSisuPlexus) {
            exclude(module = "cdi-api") // To respect the Maven exclusion
        }
        compileOnly(libs.maven3Compat)
    
        // 3 dependencies below are recommended as implementation but doing so adds them to the distribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    			klog.V(vLevel).InfoS("Image garbage collection succeeded")
    		}
    	}, ImageGCPeriod, wait.NeverStop)
    }
    
    // initializeModules will initialize internal modules that do not require the container runtime to be up.
    // Note that the modules here must not depend on modules that are not initialized here.
    func (kl *Kubelet) initializeModules() error {
    	// Prometheus metrics.
    	metrics.Register(
    		collectors.NewVolumeStatsCollector(kl),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/build.gradle.kts

        }
        api(libs.mavenResolverApi) {
            because("For ApiMavenResolver. API we interact with to resolve Maven graphs & artifacts")
        }
        api(libs.samplesCheck) {
            exclude(module = "groovy-all")
        }
        api(libs.samplesDiscovery)
        api(libs.servletApi)
        api(libs.slf4jApi)
        api(libs.socksProxy)
        api(libs.spock) {
            because("Part of the public API")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top