Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 130 for CUSTOM (0.22 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	for key, value := range in {
    		out[key] = value
    	}
    	return out
    }
    
    // crdConversionRESTOptionsGetter overrides the codec with one using the
    // provided custom converter and custom encoder and decoder version.
    type crdConversionRESTOptionsGetter struct {
    	generic.RESTOptionsGetter
    	converter             runtime.ObjectConvertor
    	encoderVersion        schema.GroupVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging_test.go

    				Disabled: &wrappers.BoolValue{Value: true},
    			},
    		},
    	}
    	nonExistant := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "custom-provider",
    					},
    				},
    			},
    		},
    	}
    	multiAccessLogging := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    er "istiod" }} - mountPath: /var/run/secrets/istio name: istiod-ca-cert {{- end }} - mountPath: /var/lib/istio/data name: istio-data {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }} - mountPath: /etc/istio/custom-bootstrap name: custom-bootstrap-volume {{- end }} # SDS channel between istioagent and Envoy - mountPath: /etc/istio/proxy name: istio-envoy {{- if eq .Values.global.jwtPolicy "third-party-jwt" }} - mountPath: /var/run/secrets/tokens name: istio-token {{- end...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    			},
    		},
    		{
    			name:   "custom-tags-sidecar",
    			tproxy: getProxy(),
    			in: &meshconfig.Tracing{
    				CustomTags: map[string]*meshconfig.Tracing_CustomTag{
    					"custom_tag_env": {
    						Type: &meshconfig.Tracing_CustomTag_Environment{
    							Environment: &meshconfig.Tracing_Environment{
    								Name:         "custom_tag_env-var",
    								DefaultValue: "custom-tag-env-default",
    							},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

            //html template for the picker...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    	{
    		Value:         &Data{Bytes: []byte{}, Custom: MyBytes{}, Attr: []byte{}},
    		ExpectXML:     `<Data Attr=""><Bytes></Bytes><Custom></Custom></Data>`,
    		UnmarshalOnly: true,
    	},
    
    	// Check that []byte works, including named []byte types.
    	{
    		Value:     &Data{Bytes: []byte("ab"), Custom: MyBytes("cd"), Attr: []byte{'v'}},
    		ExpectXML: `<Data Attr="v"><Bytes>ab</Bytes><Custom>cd</Custom></Data>`,
    	},
    
    	// Test innerxml
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils_test.go

    				claimRefs = append(claimRefs, metav1.OwnerReference{
    					APIVersion: "custom/v1",
    					Kind:       "random",
    					Name:       "random",
    					UID:        "abc",
    				})
    			}
    			if tc.unexpectedController {
    				claimRefs = append(claimRefs, metav1.OwnerReference{
    					APIVersion: "custom/v1",
    					Kind:       "Unknown",
    					Name:       "unknown",
    					UID:        "xyz",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    er "istiod" }} - mountPath: /var/run/secrets/istio name: istiod-ca-cert {{- end }} - mountPath: /var/lib/istio/data name: istio-data {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }} - mountPath: /etc/istio/custom-bootstrap name: custom-bootstrap-volume {{- end }} # SDS channel between istioagent and Envoy - mountPath: /etc/istio/proxy name: istio-envoy {{- if eq .Values.global.jwtPolicy "third-party-jwt" }} - mountPath: /var/run/secrets/tokens name: istio-token {{- end...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            'test-jar'    | 'jar'         | 'tests'
            'ejb'         | 'jar'         | null
            'ejb-client'  | 'jar'         | 'client'
            'bundle'      | 'jar'         | null
            'custom-type' | 'custom-type' | null
        }
    
        @Issue("GRADLE-3299")
        def "correctly resolve references to parent GAV properties"() {
            given:
            def parent = tmpDir.file("parent.xml") << """
    <project>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/enable-core-dump.yaml.5.template.gen.yaml

            {{- end }}
            - mountPath: /var/lib/istio/data
              name: istio-data
            {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
            - mountPath: /etc/istio/custom-bootstrap
              name: custom-bootstrap-volume
            {{- end }}
            # SDS channel between istioagent and Envoy
            - mountPath: /etc/istio/proxy
              name: istio-envoy
            - mountPath: /var/run/secrets/tokens
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top