Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for danger (0.17 sec)

  1. src/mdo/reader-stax.vm

            entities.put("sbquo", "\u201a");
            entities.put("ldquo", "\u201c");
            entities.put("rdquo", "\u201d");
            entities.put("bdquo", "\u201e");
            entities.put("dagger", "\u2020");
            entities.put("Dagger", "\u2021");
            entities.put("permil", "\u2030");
            entities.put("lsaquo", "\u2039");
            entities.put("rsaquo", "\u203a");
            entities.put("euro", "\u20ac");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. docs/fr/docs/contributing.md

    * Utilisez les mêmes exemples en Python et ne traduisez que le texte des documents. Vous n'avez pas besoin de changer quoi que ce soit pour que cela fonctionne.
    
    * Utilisez les mêmes images, noms de fichiers et liens. Vous n'avez pas besoin de changer quoi que ce soit pour que cela fonctionne.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/mdo/reader.vm

            entities.put("sbquo", "\u201a");
            entities.put("ldquo", "\u201c");
            entities.put("rdquo", "\u201d");
            entities.put("bdquo", "\u201e");
            entities.put("dagger", "\u2020");
            entities.put("Dagger", "\u2021");
            entities.put("permil", "\u2030");
            entities.put("lsaquo", "\u2039");
            entities.put("rsaquo", "\u203a");
            entities.put("euro", "\u20ac");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  4. README.md

    <a href="https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" target="_blank" title="Build, run and scale your apps on a modern, reliable, and secure PaaS."><img src="https://fastapi.tiangolo.com/img/sponsors/platform-sh.png"></a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. docs/fr/docs/python-types.md

    Mais malheureusement, rien d'utile n'en résulte :
    
    <img src="/img/python-types/image01.png">
    
    ### Ajouter des types
    
    Modifions une seule ligne de la version précédente.
    
    Nous allons changer seulement cet extrait, les paramètres de la fonction, de :
    
    
    ```Python
        first_name, last_name
    ```
    
    à :
    
    ```Python
        first_name: str, last_name: str
    ```
    
    C'est tout.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    | N/A
    
    | DataBinding
    | link:https://issuetracker.google.com/issues/110061530#comment28[AGP 3.5.0-alpha5]
    | Hidden behind a feature toggle
    
    | Dagger
    | link:https://github.com/google/dagger/issues/1120[2.18]
    | 2.18 Feature toggle support, 2.24 Enabled by default
    
    | kapt
    | link:https://youtrack.jetbrains.com/issue/KT-23880[1.3.30]
    | Hidden behind a feature toggle
    
    | Toothpick
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. pkg/kubelet/userns/userns_manager.go

    	if found && prevFrom != from {
    		return fmt.Errorf("different user namespace range already used by pod %q", pod)
    	}
    	index := int(from/userNsLength) - m.off
    	if index < 0 || index >= m.len {
    		return fmt.Errorf("id %v is out of range", from)
    	}
    	// if the pod wasn't found then verify the range is free.
    	if !found && m.used.Has(index) {
    		return fmt.Errorf("range picked for pod %q already taken", pod)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. plugin/pkg/admission/limitranger/admission.go

    	requirements.Requests = api.ResourceList{}
    	requirements.Limits = api.ResourceList{}
    
    	for i := range limitRange.Spec.Limits {
    		limit := limitRange.Spec.Limits[i]
    		if limit.Type == corev1.LimitTypeContainer {
    			for k, v := range limit.DefaultRequest {
    				requirements.Requests[api.ResourceName(k)] = v.DeepCopy()
    			}
    			for k, v := range limit.Default {
    				requirements.Limits[api.ResourceName(k)] = v.DeepCopy()
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  9. src/runtime/alg.go

    		initAlgAES()
    		return
    	}
    	for i := range hashkey {
    		hashkey[i] = uintptr(bootstrapRand())
    	}
    }
    
    func initAlgAES() {
    	useAeshash = true
    	// Initialize with random data so hash collisions will be hard to engineer.
    	key := (*[hashRandomBytes / 8]uint64)(unsafe.Pointer(&aeskeysched))
    	for i := range key {
    		key[i] = bootstrapRand()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    ckdriver":{"configOverride":{},"enabled":false,"logging":false,"monitoring":false,"topology":false}}},"tracing":{"enabled":false,"ingress":{"enabled":false},"jaeger":{"accessMode":"ReadWriteMany","enabled":false,"hub":"docker.io/jaegertracing","memory":{"max_traces":50000},"namespace":"istio-system","persist":false,"spanStorageType":"badger","storageClassName":"","tag":"1.20"},"nodeSelector":{},"opencensus":{"exporters":{"stackdriver":{"enable_tracing":true}},"hub":"docker.io/omnition","resource...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top