Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,219 for Versions (0.18 sec)

  1. pkg/kubelet/pluginmanager/plugin_manager_test.go

    func (f *fakePluginHandler) ValidatePlugin(pluginName string, endpoint string, versions []string) error {
    	f.Lock()
    	defer f.Unlock()
    	f.events = append(f.events, "validate "+pluginName)
    	return nil
    }
    
    // RegisterPlugin is a fake method
    func (f *fakePluginHandler) RegisterPlugin(pluginName, endpoint string, versions []string, pluginClientTimeout *time.Duration) error {
    	f.Lock()
    	defer f.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

                                     mlir_module.get());
      }
      VersionDef versions;
      if (mlir::failed(ExtractTfVersions(*mlir_module, &versions))) {
        return errors::Internal(
            "module attribute in _TPUCompileMlir op is missing tf versions.");
      }
    
      NameAttrList func;
      func.set_name(kEntryFuncName);
      GuaranteedConsts consts;
    
      *compilation_result = {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    The advantage of using this pattern when working only with pom metadata is that both variants are discoverable through the version.
    The disadvantage is that there is no information what the different version suffixes mean semantically.
    So in the case of conflict, Gradle would just pick the highest version when comparing the version strings.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r54/ToolingApiEclipseModelAutoBuildTasksCrossVersionSpec.groovy

    @TargetGradleVersion('>=5.4')
    class ToolingApiEclipseModelAutoBuildTasksCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion('>=3.0 <5.4')
        def "returns false for old versions"() {
            setup:
            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
    
            expect:
            !eclipseProject.hasAutoBuildTasks()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/list.md

    | `minio_cluster_objects_version_distribution` | Distribution of object versions across a cluster               |
    | `minio_cluster_usage_object_total`           | Total number of objects in a cluster                           |
    | `minio_cluster_usage_total_bytes`            | Total cluster usage in bytes                                   |
    | `minio_cluster_usage_version_total`          | Total number of versions (includes delete marker) in a cluster |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check.go

    		}
    	}
    
    	// reuse Info.FileVersions if provided
    	versions := check.Info.FileVersions
    	if versions == nil {
    		versions = make(map[*syntax.PosBase]string)
    	}
    	check.versions = versions
    
    	pkgVersionOk := check.version.isValid()
    	if pkgVersionOk && len(files) > 0 && check.version.cmp(go_current) > 0 {
    		check.errorf(files[0], TooNew, "package requires newer Go version %v (application built with %v)",
    			check.version, go_current)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/workcmd/edit.go

    			return path, version, fmt.Errorf("invalid %s path: %v", adj, err)
    		}
    	}
    	if path != arg && !allowedVersionArg(version) {
    		return path, version, fmt.Errorf("invalid %s version: %q", adj, version)
    	}
    	return path, version, nil
    }
    
    // flagEditworkReplace implements the -replace flag.
    func flagEditworkReplace(arg string) {
    	before, after, found := strings.Cut(arg, "=")
    	if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tests/test_tf_to_stablehlo.mlir

    // CHECK: %[[UDQ:.*]] = stablehlo.uniform_dequantize %[[BITCAST_CONVERT_1]] : (tensor<1x!quant.uniform<i8:f32, 1.000000e+00:3>>) -> tensor<1xf32>
    // CHECK: return %[[UDQ]] : tensor<1xf32>
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
        func.func @main(%arg0 : tensor<?xf32>) -> tensor<?xf32> {
          %scales = "tf.Const"() { value = dense<1.0> : tensor<f32> } : () -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    	}
    	f.Replace = f.Replace[:w]
    
    	f.Syntax.Cleanup()
    }
    
    func (f *WorkFile) AddGoStmt(version string) error {
    	if !GoVersionRE.MatchString(version) {
    		return fmt.Errorf("invalid language version %q", version)
    	}
    	if f.Go == nil {
    		stmt := &Line{Token: []string{"go", version}}
    		f.Go = &Go{
    			Version: version,
    			Syntax:  stmt,
    		}
    		// Find the first non-comment-only block and add
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    				}
    				if len(packages) == 0 {
    					// curM at its original version contains a path matching q.pattern,
    					// but at rev.Version it does not, so (somewhat paradoxically) if
    					// we changed the version of curM it would no longer match the query.
    					var version any = m
    					if rev.Version != q.version {
    						version = fmt.Sprintf("%s@%s (%s)", m.Path, q.version, m.Version)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top