Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,027 for RAW (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

            anything.isAssignableFrom(superStrings)
            anything.isAssignableFrom(raw)
            !anything.isAssignableFrom(collection)
    
            raw.isAssignableFrom(chars)
            raw.isAssignableFrom(strings)
            raw.isAssignableFrom(anything)
            raw.isAssignableFrom(raw)
            !raw.isAssignableFrom(collection)
    
            collection.isAssignableFrom(chars)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/extension.go

    	}
    	if !bytes.Equal(in, []byte("null")) {
    		re.Raw = append(re.Raw[0:0], in...)
    	}
    	return nil
    }
    
    // MarshalJSON may get called on pointers or values, so implement MarshalJSON on value.
    // http://stackoverflow.com/questions/21390979/custom-marshaljson-never-gets-called-in-go
    func (re RawExtension) MarshalJSON() ([]byte, error) {
    	if re.Raw == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 03 00:30:19 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/watch.go

    	out.Type = watch.EventType(in.Type)
    	if in.Object.Object != nil {
    		out.Object = in.Object.Object
    	} else if in.Object.Raw != nil {
    		// TODO: handle other fields on Unknown and detect type
    		out.Object = &runtime.Unknown{
    			Raw:         in.Object.Raw,
    			ContentType: runtime.ContentTypeJSON,
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 18 03:02:16 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  10. tests/integration/security/testdata/requestauthn/aud.yaml.tmpl

    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
        audiences:
        - "foo"
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
        audiences:
        - "bar"
    ---
    apiVersion: security.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 838 bytes
    - Viewed (0)
Back to top