Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 140 for VER (0.04 sec)

  1. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

                    constituent.getVersion());
        }
    
        private static String getId(String gid, String aid, String type, String cls, String ver) {
            return gid + ':' + aid + ':' + type + ((cls != null && !cls.isEmpty()) ? ':' + cls : "") + ':' + ver;
        }
    
        private void callDelegates(
                ClassRealm classRealm,
                RealmType type,
                ClassLoader parent,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    	}
    	baseSet := EnvSet{compatibilityVersion: compatibilityVersion, newExpressions: base, storedExpressions: base}
    	return baseSet.Extend(opts...)
    }
    
    func mustNewEnvSet(ver *version.Version, opts []VersionedOptions) *EnvSet {
    	envSet, err := newEnvSet(ver, opts)
    	if err != nil {
    		panic(fmt.Sprintf("Default environment misconfigured: %v", err))
    	}
    	return envSet
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/events.md

    ## Caso de uso
    
    Vamos iniciar com um exemplo de **caso de uso** e então ver como resolvê-lo com isso.
    
    Vamos imaginar que você tem alguns **modelos de _machine learning_** que deseja usar para lidar com as requisições. 🤖
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/runtime/defs_freebsd_386.go

    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	x86_shift    uint32
    	x86_hpet_idx uint32
    	res          [6]uint32
    }
    
    type vdsoTimekeep struct {
    	ver     uint32
    	enabled uint32
    	current uint32
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    
    	vdsoTimehandsSize = 0x50
    	vdsoTimekeepSize  = 0xc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/runtime/defs_freebsd_riscv64.go

    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	physical     uint32
    	res          [7]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    	enabled   uint32
    	current   uint32
    	pad_cgo_0 [4]byte
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    
    	vdsoTimehandsSize = 0x58
    	vdsoTimekeepSize  = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/runtime/defs_freebsd_arm.go

    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	physical     uint32
    	res          [7]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    	enabled   uint32
    	current   uint32
    	pad_cgo_0 [4]byte
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    
    	vdsoTimehandsSize = 0x58
    	vdsoTimekeepSize  = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/bugreport/bugreport.go

    	for rev, ver := range istioVersions {
    		text += fmt.Sprintf("Revision %s:\n%s\n\n", rev, ver)
    	}
    	text += "The following proxy revisions/versions were found in the cluster:\n"
    	for rev, ver := range proxyVersions {
    		text += fmt.Sprintf("Revision %s: Versions {%s}\n", rev, strings.Join(ver, ", "))
    	}
    	common.LogAndPrintf(text)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. src/runtime/defs_freebsd_arm64.go

    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	physical     uint32
    	res          [7]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    	enabled   uint32
    	current   uint32
    	pad_cgo_0 [4]byte
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    
    	vdsoTimehandsSize = 0x58
    	vdsoTimekeepSize  = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/common.go

    	ver, err := kubeadmutil.KubernetesReleaseVersion(cfg.KubernetesVersion)
    	if err != nil {
    		return err
    	}
    
    	// Requested version is automatic CI build, thus mark CIKubernetesVersion as `ci/<resolved-version>`
    	if isCIVersion {
    		cfg.CIKubernetesVersion = fmt.Sprintf("%s%s", constants.CIKubernetesVersionPrefix, ver)
    	}
    
    	cfg.KubernetesVersion = ver
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. docs/es/docs/python-types.md

    Ahora que sabes que tienes que arreglarlo convierte `age` a un string con `str(age)`:
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial004.py!}
    ```
    
    ## Declarando tipos
    
    Acabas de ver el lugar principal para declarar los type hints. Como parámetros de las funciones.
    
    Este es también el lugar principal en que los usarías con  **FastAPI**.
    
    ### Tipos simples
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top