Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 926 for RAW (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. src/internal/trace/internal/oldtrace/parser.go

    	}
    	switch raw.typ {
    	case EvBatch:
    		p.lastGs[p.lastP] = p.lastG
    		if raw.args[0] != math.MaxUint64 && raw.args[0] > math.MaxInt32 {
    			return fmt.Errorf("processor ID %d is larger than maximum of %d", raw.args[0], uint64(math.MaxInt32))
    		}
    		if raw.args[0] == math.MaxUint64 {
    			p.lastP = -1
    		} else {
    			p.lastP = int32(raw.args[0])
    		}
    		p.lastG = p.lastGs[p.lastP]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/native-library-summary.adoc.template

    * Check out the user manual chapter on link:{userManualPath}/building_${languageLC.raw}_projects.html[Building ${language.raw} projects]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  8. pkg/webhooks/validation/server/server_test.go

    			Value: strconv.Itoa(i),
    		}},
    	}
    	raw, err := json.Marshal(&un)
    	if err != nil {
    		t.Fatalf("Marshal(%v) failed: %v", name, err)
    	}
    	if includeBogusKey {
    		trial := make(map[string]any)
    		if err := json.Unmarshal(raw, &trial); err != nil {
    			t.Fatalf("Unmarshal(%v) failed: %v", name, err)
    		}
    		trial["unexpected_key"] = "any value"
    		if raw, err = json.Marshal(&trial); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/net/http/cookie.go

    // value was enclosed in double quotes.
    func parseCookieValue(raw string, allowDoubleQuote bool) (value string, quoted, ok bool) {
    	// Strip the quotes, if present.
    	if allowDoubleQuote && len(raw) > 1 && raw[0] == '"' && raw[len(raw)-1] == '"' {
    		raw = raw[1 : len(raw)-1]
    		quoted = true
    	}
    	for i := 0; i < len(raw); i++ {
    		if !validCookieValueByte(raw[i]) {
    			return "", quoted, false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion.go

    func Convert_apiextensions_JSON_To_v1_JSON(in *apiextensions.JSON, out *JSON, s conversion.Scope) error {
    	raw, err := json.Marshal(*in)
    	if err != nil {
    		return err
    	}
    	if len(raw) == 0 || bytes.Equal(raw, nullLiteral) {
    		// match JSON#UnmarshalJSON treatment of literal nulls
    		out.Raw = nil
    	} else {
    		out.Raw = raw
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top