Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for vanilla (0.35 sec)

  1. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    type Pointery struct {
    	p *Pointery
    	x [1024]int
    }
    
    type Pointery2 struct {
    	p *Pointery2
    	x [1024]int
    }
    
    // This type and the following one will have the same size.
    type Vanilla struct {
    	np uintptr
    	x  [1024]int
    }
    
    type Vanilla2 struct {
    	np uintptr
    	x  [1023]int
    	y  int
    }
    
    type Single struct {
    	np uintptr
    	x  [1023]int
    }
    
    var G int
    
    //go:noinline
    func clobber() {
    	G++
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. manifests/charts/base/values.yaml

        istioNamespace: istio-system
    
        externalIstiod: false
        remotePilotAddress: ""
    
        # Platform where Istio is deployed. Possible values are: "openshift", "gcp".
        # An empty value means it is a vanilla Kubernetes distribution, therefore no special
        # treatment will be considered.
        platform: ""
    
        # Setup how istiod Service is configured. See https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/IsolatedProjectsJavaProjectSyncTest.groovy

    class IsolatedProjectsJavaProjectSyncTest extends AbstractIdeaSyncTest {
    
        private IsolatedProjectsIdeSyncFixture fixture = new IsolatedProjectsIdeSyncFixture(testDirectory)
    
        def "IDEA sync has known IP violations for vanilla Java project"() {
            given:
            simpleJavaProject()
    
            when:
            ideaSync("2024.1")
    
            then:
            fixture.assertHtmlReportHasProblems {
                totalProblemsCount = 10
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. fastapi/param_functions.py

                """
            ),
        ] = None,
        serialization_alias: Annotated[
            Union[str, None],
            Doc(
                """
                'Blacklist' validation step. The vanilla parameter field will be the
                single one of the alias' or set of aliases' fields and all the other
                fields will be ignored at serialization time.
                """
            ),
        ] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // TODO: remove this?
      // No longer used.
      google.protobuf.BoolValue autoscalingv2API = 66;
    
      // Platform in which Istio is deployed. Possible values are: "openshift" and "gcp"
      // An empty value means it is a vanilla Kubernetes distribution, therefore no special
      // treatment will be considered.
      string platform = 69;
    
      // Defines which IP family to use for single stack or the order of IP families for dual-stack.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Platform in which Istio is deployed. Possible values are: "openshift" and "gcp"
    	// An empty value means it is a vanilla Kubernetes distribution, therefore no special
    	// treatment will be considered.
    	Platform string `protobuf:"bytes,69,opt,name=platform,proto3" json:"platform,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    In v1.26.0, we've found the bug that the PreEnqueue extension point doesn't work for Pods going to activeQ through backoffQ. 
    It doesn't affect any of the vanilla Kubernetes behavior, but, may break custom PreEnqueue plugins.
    
    The cause PR is [reverted](https://github.com/kubernetes/kubernetes/pull/117194) by v1.26.1.
    
    ## Urgent Upgrade Notes 
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. RELEASE.md

    
    # Release 2.11.1
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top