Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 893 for mapFor (0.2 sec)

  1. pkg/controller/storageversionmigrator/resourceversion.go

    	kubeClient      clientset.Interface
    	mapper          meta.ResettableRESTMapper
    }
    
    func NewResourceVersionController(
    	ctx context.Context,
    	kubeClient clientset.Interface,
    	discoveryClient *discovery.DiscoveryClient,
    	metadataClient metadata.Interface,
    	svmInformer svminformers.StorageVersionMigrationInformer,
    	mapper meta.ResettableRESTMapper,
    ) *ResourceVersionController {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/internal/gover/gover.go

    }
    
    // Lang returns the Go language version. For example, Lang("1.2.3") == "1.2".
    func Lang(x string) string {
    	v := Parse(x)
    	if v.Minor == "" || v.Major == "1" && v.Minor == "0" {
    		return v.Major
    	}
    	return v.Major + "." + v.Minor
    }
    
    // IsValid reports whether the version x is valid.
    func IsValid(x string) bool {
    	return Parse(x) != Version{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/path-params-numeric-validations.md

    ```
    
    ## Validações numéricas: maior que e menor que ou igual
    
    O mesmo se aplica para:
    
    * `gt`: maior que (`g`reater `t`han)
    * `le`: menor que ou igual (`l`ess than or `e`qual)
    
    ```Python hl_lines="9"
    {!../../../docs_src/path_params_numeric_validations/tutorial005.py!}
    ```
    
    ## Validações numéricas: valores do tipo float, maior que e menor que
    
    Validações numéricas também funcionam para valores do tipo `float`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/platform/ConscryptPlatform.kt

        fun atLeastVersion(
          major: Int,
          minor: Int = 0,
          patch: Int = 0,
        ): Boolean {
          val conscryptVersion = Conscrypt.version() ?: return false
    
          if (conscryptVersion.major() != major) {
            return conscryptVersion.major() > major
          }
    
          if (conscryptVersion.minor() != minor) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/semver/semver.go

    		return v + p.short
    	}
    	return v
    }
    
    // Major returns the major version prefix of the semantic version v.
    // For example, Major("v2.1.0") == "v2".
    // If v is an invalid semantic version string, Major returns the empty string.
    func Major(v string) string {
    	pv, ok := parse(v)
    	if !ok {
    		return ""
    	}
    	return v[:1+len(pv.major)]
    }
    
    // MajorMinor returns the major.minor version prefix of the semantic version v.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    // PseudoVersion returns a pseudo-version for the given major version ("v1")
    // preexisting older tagged version ("" or "v1.2.3" or "v1.2.3-pre"), revision time,
    // and revision identifier (usually a 12-byte commit hash prefix).
    func PseudoVersion(major, older string, t time.Time, rev string) string {
    	if major == "" {
    		major = "v0"
    	}
    	segment := fmt.Sprintf("%s-%s", t.UTC().Format(PseudoVersionTimestampFormat), rev)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

        // corresponds to the main function's newly created argument when cloning
        // ops from src -> main.
        BlockArgument main_arg = main_func_op.getArgument(main_arg_idx);
        mapper.map(src_arg, main_arg);
      }
    
      return mapper;
    }
    
    // Copies ops from `src_func_op` to `main_body` except for the FetchOps. Returns
    // the fetch values in the main GraphOp corresponding to the original fetch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *RuntimeClass) APILifecycleIntroduced() (major, minor int) {
    	return 1, 20
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *HorizontalPodAutoscaler) APILifecycleIntroduced() (major, minor int) {
    	return 1, 23
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/scheduling/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *PriorityClass) APILifecycleIntroduced() (major, minor int) {
    	return 1, 14
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top