Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for RAW (0.08 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    			},
    			"gamma": {
    				Description: "Gamma is restricted to foo, bar and baz",
    				Type:        "string",
    				Enum: []apiextensionsv1.JSON{
    					{
    						Raw: []byte(`"foo"`),
    					},
    					{
    						Raw: []byte(`"bar"`),
    					},
    					{
    						Raw: []byte(`"baz"`),
    					},
    				},
    			},
    		},
    	}
    	validationSchemaWithDescription := validationSchema.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    		Metadata: &model.NodeMetadata{
    			IstioVersion: "1.2.2",
    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    		},
    	}
    
    	gatewayProxy := &model.Proxy{
    		Type:            model.Router,
    		ConfigNamespace: "not-default",
    		Metadata: &model.NodeMetadata{
    			IstioVersion: "1.2.2",
    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_utils_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if !history.EqualRevision(revision, restoredRevision) {
    		t.Errorf("wanted %v got %v", string(revision.Data.Raw), string(restoredRevision.Data.Raw))
    	}
    	value, ok := restoredRevision.Annotations[key]
    	if !ok {
    		t.Errorf("missing annotation %s", key)
    	}
    	if value != expectedValue {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type FieldsV1 struct {
    	// Raw is the underlying serialization of this object.
    	Raw []byte `json:"-" protobuf:"bytes,1,opt,name=Raw"`
    }
    
    func (f FieldsV1) String() string {
    	return string(f.Raw)
    }
    
    // TODO: Table does not generate to protobuf because of the interface{} - fix protobuf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            // phase 1
            DefaultModelBuildingResult result = new DefaultModelBuildingResult();
    
            DefaultModelProblemCollector problems = new DefaultModelProblemCollector(result);
    
            // read and validate raw model
            Model fileModel = readFileModel(request, problems);
    
            request.setFileModel(fileModel);
            result.setFileModel(fileModel.clone());
    
            activateFileModel(request, result, problems);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			name: "url user info is not allowed",
    			in:   "https://user:pass@issuer-url",
    			want: `issuer.url: Invalid value: "https://user:pass@issuer-url": URL must not contain a username or password`,
    		},
    		{
    			name: "url raw query is not allowed",
    			in:   "https://issuer-url?query",
    			want: `issuer.url: Invalid value: "https://issuer-url?query": URL must not contain a query`,
    		},
    		{
    			name: "url fragment is not allowed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSortedMap.java

          boolean sameComparator,
          Iterable<? extends Entry<? extends K, ? extends V>> entries) {
        // "adding" type params to an array of a raw type should be safe as
        // long as no one can ever cast that same array instance back to a
        // raw type.
        @SuppressWarnings("unchecked")
        Entry<K, V>[] entryArray = (Entry[]) Iterables.toArray(entries, EMPTY_ENTRY_ARRAY);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    }
    
    func validateRaw(ctxt *obj.Link, ins *instruction) {
    	// Treat the raw value specially as a 32-bit unsigned integer.
    	// Nobody wants to enter negative machine code.
    	if ins.imm < 0 || 1<<32 <= ins.imm {
    		ctxt.Diag("%v: immediate %d in raw position cannot be larger than 32 bits", ins.as, ins.imm)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    			// If HTTP 1.0 is enabled, we will match it
    			return []string{"http/1.0", "http/1.1", "h2c"}
    		}
    		// Otherwise, matching would just lead to immediate rejection. By not matching, we can let it pass
    		// through as raw TCP at least.
    		// NOTE: mtlsHTTPALPNs can always include 1.0, for simplicity, as it will only be sent if a client
    		return []string{"http/1.1", "h2c"}
    	}()
    	mtlsHTTPALPNs = []string{"istio-http/1.0", "istio-http/1.1", "istio-h2"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          boolean sameComparator,
          Iterable<? extends Entry<? extends K, ? extends V>> entries) {
        // "adding" type params to an array of a raw type should be safe as
        // long as no one can ever cast that same array instance back to a
        // raw type.
        @SuppressWarnings("unchecked")
        Entry<K, V>[] entryArray = (Entry[]) Iterables.toArray(entries, EMPTY_ENTRY_ARRAY);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top