Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Street (0.28 sec)

  1. doc/go_spec.html

    for identity for the purpose of conversion:
    </p>
    
    <pre>
    type Person struct {
    	Name    string
    	Address *struct {
    		Street string
    		City   string
    	}
    }
    
    var data *struct {
    	Name    string `json:"name"`
    	Address *struct {
    		Street string `json:"street"`
    		City   string `json:"city"`
    	} `json:"address"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.30.md

    - github.com/Azure/go-autorest: [v14.2.0+incompatible](https://github.com/Azure/go-autorest/tree/v14.2.0)
    - github.com/a8m/tree: [10a5fd5](https://github.com/a8m/tree/tree/10a5fd5)
    - github.com/benbjohnson/clock: [v1.1.0](https://github.com/benbjohnson/clock/tree/v1.1.0)
    - github.com/danwinship/knftables: [v0.0.13](https://github.com/danwinship/knftables/tree/v0.0.13)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	// retain in the priority tree. Setting this to zero saves a small amount
    	// of memory at the cost of performance.
    	//
    	// See RFC 7540, Section 5.3.4:
    	//   Similarly, streams that are in the "idle" state can be assigned
    	//   priority or become a parent of other streams. This allows for the
    	//   creation of a grouping node in the dependency tree, which enables
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-66504`](https://youtrack.jetbrains.com/issue/KT-66504) K2: plusAssign operator call is resolved differently than function call
    - [`KT-48515`](https://youtrack.jetbrains.com/issue/KT-48515) JSpecify: If a class has a `@Nullable` type-parameter bound, Kotlin should still treat unbounded wildcards like platform types
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	Source ClaimSource
    }
    
    // ClaimSource describes a reference to a ResourceClaim.
    //
    // Exactly one of these fields should be set.  Consumers of this type must
    // treat an empty object as if it has an unknown value.
    type ClaimSource struct {
    	// ResourceClaimName is the name of a ResourceClaim object in the same
    	// namespace as this pod.
    	ResourceClaimName *string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_ClaimSource = map[string]string{
    	"":                          "ClaimSource describes a reference to a ResourceClaim.\n\nExactly one of these fields should be set.  Consumers of this type must treat an empty object as if it has an unknown value.",
    	"resourceClaimName":         "ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "description": "CronJobSpec describes how the job execution will look like and when it will actually run.",
            "properties": {
              "concurrencyPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // ClaimSource describes a reference to a ResourceClaim.
    //
    // Exactly one of these fields should be set.  Consumers of this type must
    // treat an empty object as if it has an unknown value.
    type ClaimSource struct {
    	// ResourceClaimName is the name of a ResourceClaim object in the same
    	// namespace as this pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional LocalObjectReference secretRef = 4;
    }
    
    // ClaimSource describes a reference to a ResourceClaim.
    //
    // Exactly one of these fields should be set.  Consumers of this type must
    // treat an empty object as if it has an unknown value.
    message ClaimSource {
      // ResourceClaimName is the name of a ResourceClaim object in the same
      // namespace as this pod.
      optional string resourceClaimName = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		// insert a write barrier.
    		t = types.Types[types.TUNSAFEPTR]
    	}
    	if deref {
    		// Treat as a mem->mem move.
    		if right == nil {
    			s.zero(t, addr)
    		} else {
    			s.moveWhichMayOverlap(t, addr, right, mayOverlap)
    		}
    		return
    	}
    	// Treat as a store.
    	s.storeType(t, addr, right, skip, !ir.IsAutoTmp(left))
    }
    
    // zeroVal returns the zero value for type t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top