Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 861 for RAW (0.66 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn_test.go

    			requested: []string{"v1.raw", "v1.base64"},
    			error:     true,
    		}, {
    			supported: map[string]bool{"": binary, "raw": binary, "base64": base64},
    			requested: []string{"v1.raw", "raw"},
    			expected:  "raw",
    		},
    		{
    			supported: map[string]bool{"": binary, "v1.raw": binary, "v1.base64": base64, "v2.raw": binary, "v2.base64": base64},
    			requested: []string{"v1.raw"},
    			expected:  "v1.raw",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. cni/pkg/log/uds.go

    	}
    	if err := json.Unmarshal(raw["level"], &msg.Level); err != nil {
    		log.Debugf("Failed to unmarshal CNI plugin log entry: %v", err)
    		return cniLog{}, false
    	}
    	if err := json.Unmarshal(raw["time"], &msg.Time); err != nil {
    		log.Debugf("Failed to unmarshal CNI plugin log entry: %v", err)
    		return cniLog{}, false
    	}
    	delete(raw, "msg")
    	delete(raw, "level")
    	delete(raw, "time")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/types.go

    //
    // +k8s:deepcopy-gen=true
    // +protobuf=true
    // +k8s:openapi-gen=true
    type RawExtension struct {
    	// Raw is the underlying serialization of this object.
    	//
    	// TODO: Determine how to detect ContentType and ContentEncoding of 'Raw' data.
    	Raw []byte `json:"-" protobuf:"bytes,1,opt,name=raw"`
    	// Object can hold a representation of this extension - useful for working with versioned
    	// structs.
    	Object Object `json:"-"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:58 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/native-application-summary.adoc.template

    * Build, bundle and run the application
    
    == Next steps
    
    To learn more about how you can further customize ${language.raw} application projects, check out the user manual chapter on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 280 bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/stored.rules

    methods\ that\ are\ mutable\ public\ API\ properties\ and\ do\ not\ have\ raw\ return\ type\ org.gradle.api.resources.TextResource\ and\ do\ not\ have\ raw\ return\ type\ assignable\ to\ org.gradle.api.file.FileCollection\ should\ have\ return\ type\ Provider=public-api-mutable-properties.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/generated.pb.go

    }
    
    func (m *RawExtension) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.Raw != nil {
    		i -= len(m.Raw)
    		copy(dAtA[i:], m.Raw)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(m.Raw)))
    		i--
    		dAtA[i] = 0xa
    	}
    	return len(dAtA) - i, nil
    }
    
    func (m *TypeMeta) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -d 127.0.0.53/32 -j CT --zone 2
    iptables -t raw -A PREROUTING -p udp --sport 53 -s 127.0.0.53/32 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java

        /**
         * Gets the raw model as it was read from the input model source. Apart from basic validation, the raw model has not
         * undergone any updates by the model builder, e.g. reflects neither inheritance nor interpolation.
         *
         * @return The raw model, never {@code null}.
         */
        Model getRawModel();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/url.go

    	if d.URL == "" && d.Category == "" && a.URL == "" {
    		return "", nil // do nothing
    	}
    	raw := d.URL
    	if d.URL == "" && d.Category != "" {
    		raw = "#" + d.Category
    	}
    	u, err := url.Parse(raw)
    	if err != nil {
    		return "", fmt.Errorf("invalid Diagnostic.URL %q: %s", raw, err)
    	}
    	base, err := url.Parse(a.URL)
    	if err != nil {
    		return "", fmt.Errorf("invalid Analyzer.URL %q: %s", a.URL, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 901 bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    //
    // +k8s:deepcopy-gen=true
    // +protobuf=true
    // +k8s:openapi-gen=true
    message RawExtension {
      // Raw is the underlying serialization of this object.
      //
      // TODO: Determine how to detect ContentType and ContentEncoding of 'Raw' data.
      optional bytes raw = 1;
    }
    
    // TypeMeta is shared by all top level objects. The proper way to use it is to inline it in your type,
    // like this:
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top