Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,259 for v2field (0.46 sec)

  1. pkg/kubelet/checkpointmanager/checkpoint_manager_test.go

    }
    
    type CheckpointDataV2 struct {
    	PortMappings []*PortMapping `json:"port_mappings,omitempty"`
    	HostNetwork  bool           `json:"host_network,omitempty"`
    	V2Field      string         `json:"v2field"`
    }
    
    type protocol string
    
    // portMapping is the port mapping configurations of a sandbox.
    type PortMapping struct {
    	// protocol of the port mapping.
    	Protocol *protocol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 12 06:41:04 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  2. schema/field.go

    			field.DataType = ""
    			field.IgnoreMigration = true
    		case "migration":
    			field.IgnoreMigration = true
    		}
    	}
    
    	if v, ok := field.TagSettings["->"]; ok {
    		field.Creatable = false
    		field.Updatable = false
    		if strings.ToLower(v) == "false" {
    			field.Readable = false
    		} else {
    			field.Readable = true
    		}
    	}
    
    	if v, ok := field.TagSettings["<-"]; ok {
    		field.Creatable = true
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/field.go

    package ppc64asm
    
    import (
    	"fmt"
    	"strings"
    )
    
    // A BitField is a bit-field in a 32-bit word.
    // Bits are counted from 0 from the MSB to 31 as the LSB.
    type BitField struct {
    	Offs uint8 // the offset of the left-most bit.
    	Bits uint8 // length in bits.
    	// This instruction word holding this field.
    	// It is always 0 for ISA < 3.1 instructions. It is
    	// in decoding order. (0 == prefix, 1 == suffix on ISA 3.1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Header.kt

        @JvmField val TARGET_PATH: ByteString = TARGET_PATH_UTF8.encodeUtf8()
    
        @JvmField val TARGET_SCHEME: ByteString = TARGET_SCHEME_UTF8.encodeUtf8()
    
        @JvmField val TARGET_AUTHORITY: ByteString = TARGET_AUTHORITY_UTF8.encodeUtf8()
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. releasenotes/notes/add-affinity-field-to-istiod.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue: []
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 16:53:36 UTC 2023
    - 200 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    			}
    			if aField.Anonymous != bField.Anonymous {
    				fatalTypeError(t, path, a, b, fmt.Sprintf("mismatched field anonymous %d: %v %v", i, aField.Anonymous, bField.Anonymous))
    			}
    			if !reflect.DeepEqual(aField.Index, bField.Index) {
    				fatalTypeError(t, path, a, b, fmt.Sprintf("mismatched field index %d: %v %v", i, aField.Index, bField.Index))
    			}
    			path = append(path, aField.Name)
    			assertEqualTypes(t, path, aField.Type, bField.Type)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. releasenotes/notes/add-tolerations-field-to-istiod.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue: []
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 03:09:52 UTC 2023
    - 203 bytes
    - Viewed (0)
  8. callbacks/create.go

    				field := stmt.Schema.FieldsByDBName[column.Name]
    				if values.Values[0][idx], isZero = field.ValueOf(stmt.Context, stmt.ReflectValue); isZero {
    					if field.DefaultValueInterface != nil {
    						values.Values[0][idx] = field.DefaultValueInterface
    						stmt.AddError(field.Set(stmt.Context, stmt.ReflectValue, field.DefaultValueInterface))
    					} else if field.AutoCreateTime > 0 || field.AutoUpdateTime > 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CorrettoTest.kt

    import org.junit.jupiter.api.Disabled
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    class CorrettoTest {
      @JvmField @RegisterExtension
      val platform = PlatformRule()
    
      @JvmField @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
    
      private val client = clientTestRule.newClient()
    
      @BeforeEach fun setUp() {
        platform.assumeCorretto()
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/encoding/csv/reader_test.go

    	Input:  "§field\r\r\n¶§field\r\r\n",
    	Output: [][]string{{"field\r"}, {"field\r"}},
    }, {
    	Name:   "FieldCRCRLFCR",
    	Input:  "§field\r\r\n¶§\rfield\r\r\n\r",
    	Output: [][]string{{"field\r"}, {"\rfield\r"}},
    }, {
    	Name:   "FieldCRCRLFCRCR",
    	Input:  "§field\r\r\n¶§\r\rfield\r\r\n¶§\r\r",
    	Output: [][]string{{"field\r"}, {"\r\rfield\r"}, {"\r"}},
    }, {
    	Name:  "MultiFieldCRCRLFCRCR",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
Back to top