Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 224 for dataSource (0.24 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml

                  selfLink: selfLinkValue
                  uid: uidValue
                spec:
                  accessModes:
                  - accessModesValue
                  dataSource:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                  dataSourceRef:
                    apiGroup: apiGroupValue
                    kind: kindValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.StatefulSet.yaml

                  selfLink: selfLinkValue
                  uid: uidValue
                spec:
                  accessModes:
                  - accessModesValue
                  dataSource:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                  dataSourceRef:
                    apiGroup: apiGroupValue
                    kind: kindValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.StatefulSet.yaml

                  selfLink: selfLinkValue
                  uid: uidValue
                spec:
                  accessModes:
                  - accessModesValue
                  dataSource:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                  dataSourceRef:
                    apiGroup: apiGroupValue
                    kind: kindValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging.go

    	return &fileaccesslog.FileAccessLog_LogFormat{
    		LogFormat: &core.SubstitutionFormatString{
    			Format: &core.SubstitutionFormatString_TextFormatSource{
    				TextFormatSource: &core.DataSource{
    					Specifier: &core.DataSource_InlineString{
    						InlineString: formatString,
    					},
    				},
    			},
    		},
    	}, formatters
    }
    
    func buildFileAccessJSONLogFormat(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  7. pilot/pkg/security/model/authentication_test.go

    					CombinedValidationContext: &auth.CommonTlsContext_CombinedCertificateValidationContext{
    						DefaultValidationContext: &auth.CertificateValidationContext{
    							Crl: &core.DataSource{
    								Specifier: &core.DataSource_Filename{
    									Filename: "/custom/path/to/crl.pem",
    								},
    							},
    						},
    						ValidationContextSdsSecretConfig: &auth.SdsSecretConfig{
    							Name: "ROOTCA",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/extensions_test.go

    	}{
    		{
    			url: "file://fake.wasm",
    			wasmPlugin: &extensions.WasmPlugin{
    				Url: "file://fake.wasm",
    			},
    			expected: &core.AsyncDataSource{
    				Specifier: &core.AsyncDataSource_Local{
    					Local: &core.DataSource{
    						Specifier: &core.DataSource_Filename{
    							Filename: "fake.wasm",
    						},
    					},
    				},
    			},
    		},
    		{
    			url: "oci://ghcr.io/istio/fake-wasm:latest",
    			wasmPlugin: &extensions.WasmPlugin{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Required(fldPath.Child("kind"), ""))
    	}
    	apiGroup := ""
    	if dataSource.APIGroup != nil {
    		apiGroup = *dataSource.APIGroup
    	}
    	if len(apiGroup) == 0 && dataSource.Kind != "PersistentVolumeClaim" {
    		allErrs = append(allErrs, field.Invalid(fldPath, dataSource.Kind, "must be 'PersistentVolumeClaim' when referencing the default apiGroup"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  10. pkg/wasm/convert.go

    	}
    
    	// Rewrite remote fetch to local file.
    	vm.Code = &core.AsyncDataSource{
    		Specifier: &core.AsyncDataSource_Local{
    			Local: &core.DataSource{
    				Specifier: &core.DataSource_Filename{
    					Filename: f,
    				},
    			},
    		},
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top