Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 229 for cipher (0.14 sec)

  1. docs/de/docs/tutorial/extra-data-types.md

    # Zusätzliche Datentypen
    
    Bisher haben Sie gängige Datentypen verwendet, wie zum Beispiel:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    Sie können aber auch komplexere Datentypen verwenden.
    
    Und Sie haben immer noch dieselbe Funktionalität wie bisher gesehen:
    
    * Großartige Editor-Unterstützung.
    * Datenkonvertierung bei eingehenden Requests.
    * Datenkonvertierung für Response-Daten.
    * Datenvalidierung.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pkg/registry/resource/resourceslice/strategy.go

    }
    
    var TriggerFunc = map[string]storage.IndexerFunc{
    	// Only one index is supported:
    	// https://github.com/kubernetes/kubernetes/blob/3aa8c59fec0bf339e67ca80ea7905c817baeca85/staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go#L346-L350
    	"nodeName": nodeNameTriggerFunc,
    }
    
    func nodeNameTriggerFunc(obj runtime.Object) string {
    	return obj.(*resource.ResourceSlice).NodeName
    }
    
    // Indexers returns the indexers for ResourceSlice.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/anames.go

    	"VPERM",
    	"VPERMXOR",
    	"VPERMR",
    	"VBPERMQ",
    	"VBPERMD",
    	"VSEL",
    	"VSPLTB",
    	"VSPLTH",
    	"VSPLTW",
    	"VSPLTISB",
    	"VSPLTISH",
    	"VSPLTISW",
    	"VCIPH",
    	"VCIPHER",
    	"VCIPHERLAST",
    	"VNCIPH",
    	"VNCIPHER",
    	"VNCIPHERLAST",
    	"VSBOX",
    	"VSHASIGMA",
    	"VSHASIGMAW",
    	"VSHASIGMAD",
    	"VMRGEW",
    	"VMRGOW",
    	"VCLZLSBB",
    	"VCTZLSBB",
    	"LXV",
    	"LXVL",
    	"LXVLL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/lister_watcher.go

    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cacher
    
    import (
    	"context"
    
    	"google.golang.org/grpc/metadata"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:51:06 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    		Resource: requestInfo.Resource,
    	}
    	return groupResource.String()
    }
    
    // NOTICE: Keep in sync with shouldDelegateList function in
    //
    //	staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go
    func shouldListFromStorage(query url.Values, opts *metav1.ListOptions) bool {
    	resourceVersion := opts.ResourceVersion
    	match := opts.ResourceVersionMatch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/context.go

    		return false
    	}
    	for i, c := range b[:len(s)] {
    		if c != s[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // caseType returns an info with only the case bits, normalized to either
    // cLower, cUpper, cTitle or cUncased.
    func (c *context) caseType() info {
    	cm := c.info & 0x7
    	if cm < 4 {
    		return cm
    	}
    	if cm >= cXORCase {
    		// xor the last bit of the rune with the case type bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. docs/de/docs/advanced/using-request-directly.md

    # Den Request direkt verwenden
    
    Bisher haben Sie die Teile des Requests, die Sie benötigen, mithilfe von deren Typen deklariert.
    
    Daten nehmend von:
    
    * Dem Pfad als Parameter.
    * Headern.
    * Cookies.
    * usw.
    
    Und indem Sie das tun, validiert **FastAPI** diese Daten, konvertiert sie und generiert automatisch Dokumentation für Ihre API.
    
    Es gibt jedoch Situationen, in denen Sie möglicherweise direkt auf das `Request`-Objekt zugreifen müssen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:32 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_progress.go

    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cacher
    
    import (
    	"context"
    	"sync"
    	"time"
    
    	"google.golang.org/grpc/metadata"
    
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 09:56:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

            path: pathValue
            readOnly: true
            secretFile: secretFileValue
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
          cinder:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
            volumeID: volumeIDValue
          claimRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top