Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 213 for case1 (0.06 sec)

  1. cmd/xl-storage-format-v2_gen.go

    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "ID":
    			err = dc.ReadExactBytes((z.VersionID)[:])
    			if err != nil {
    				err = msgp.WrapError(err, "VersionID")
    				return
    			}
    		case "MTime":
    			z.ModTime, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ModTime")
    				return
    			}
    		case "MetaSys":
    			var zb0002 uint32
    			zb0002, err = dc.ReadMapHeader()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    		}
    		seenExts[extension] = true
    
    		switch extension {
    		case extensionStatusRequest:
    			m.ocspStapling = true
    		case extensionSessionTicket:
    			m.ticketSupported = true
    		case extensionRenegotiationInfo:
    			if !readUint8LengthPrefixed(&extData, &m.secureRenegotiation) {
    				return false
    			}
    			m.secureRenegotiationSupported = true
    		case extensionExtendedMasterSecret:
    			m.extendedMasterSecret = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			// with NotOlderThan semantic), the further requests (even specifying earlier resource
    			// version) will also return the result synchronized to at least ResourceVersion X.
    			// By parallelizing test cases we ensure that the order in which test cases are defined
    			// doesn't automatically preclude some scenarios from happening.
    			t.Parallel()
    
    			out := &example.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    			switch node.(type) {
    			case *ast.File:
    				kind = "file"
    			case *ast.FuncType:
    				kind = "func"
    			case *ast.BlockStmt:
    				kind = "block"
    			case *ast.IfStmt:
    				kind = "if"
    			case *ast.SwitchStmt:
    				kind = "switch"
    			case *ast.TypeSwitchStmt:
    				kind = "type switch"
    			case *ast.CaseClause:
    				kind = "case"
    			case *ast.CommClause:
    				kind = "comm"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	switch requestInfo.Verb {
    	case "get":
    		return handlers.GetResource(storage, requestScope)
    	case "list":
    		forceWatch := false
    		return handlers.ListResource(storage, storage, requestScope, forceWatch, r.minRequestTimeout)
    	case "watch":
    		forceWatch := true
    		return handlers.ListResource(storage, storage, requestScope, forceWatch, r.minRequestTimeout)
    	case "create":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <6> Registers a new untyped task named `myTask2` and configures it — you can only configure properties and methods that are available on `Task` in this case
    <7> Gets a reference to the existing task named `test` of type `Test` and configures it — in this case you have access to the properties and methods of the specified type
    <8> Registers a new task named `myCopy2` of type `Copy` and configures it
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    		case isSysErrNotDir(err) || isSysErrIsDir(err):
    			return nil, dmTime, errFileNotFound
    		case isSysErrHandleInvalid(err):
    			// This case is special and needs to be handled for windows.
    			return nil, dmTime, errFileNotFound
    		case isSysErrIO(err):
    			return nil, dmTime, errFaultyDisk
    		case isSysErrTooManyFiles(err):
    			return nil, dmTime, errTooManyOpenFiles
    		case isSysErrInvalidArg(err):
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  8. cmd/erasure-object.go

    				ok = etag != "" && etag == fi.Metadata["etag"]
    			}
    			if ok {
    				continue
    			}
    		} // in all other cases metadata is corrupt, do not read from it.
    
    		onlineMeta[i] = FileInfo{}
    		onlineDisks[i] = nil
    	}
    
    	select {
    	case mrfCheck <- fi.ShallowCopy():
    	case <-ctx.Done():
    		return fi, onlineMeta, onlineDisks, toObjectErr(ctx.Err(), bucket, object)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. src/time/time_test.go

    		b, err := tt.time.MarshalJSON()
    		switch {
    		case b != nil:
    			t.Errorf("(%v).MarshalText() = %q, want nil", tt.time, b)
    		case err == nil || err.Error() != want:
    			t.Errorf("(%v).MarshalJSON() error = %v, want %v", tt.time, err, want)
    		}
    
    		want = strings.ReplaceAll(tt.want, "JSON", "Text")
    		b, err = tt.time.MarshalText()
    		switch {
    		case b != nil:
    			t.Errorf("(%v).MarshalText() = %q, want nil", tt.time, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    		}
    	}
    
    	switch redirect.RedirectCode {
    	case 0, 301:
    		action.Redirect.ResponseCode = route.RedirectAction_MOVED_PERMANENTLY
    	case 302:
    		action.Redirect.ResponseCode = route.RedirectAction_FOUND
    	case 303:
    		action.Redirect.ResponseCode = route.RedirectAction_SEE_OTHER
    	case 307:
    		action.Redirect.ResponseCode = route.RedirectAction_TEMPORARY_REDIRECT
    	case 308:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top