Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 387 for RAW (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. tests/integration/security/policy_attachment_only/testdata/requestauthn/gateway-jwt.yaml.tmpl

        group: gateway.networking.k8s.io
        name: {{ .To.ServiceName }}-gateway
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/compress/zlib/reader_test.go

    		if err != nil {
    			if err != tt.err {
    				t.Errorf("%s: io.Copy: %v want %v", tt.desc, err, tt.err)
    			}
    			continue
    		}
    		s := b.String()
    		if s != tt.raw {
    			t.Errorf("%s: got %d-byte %q want %d-byte %q", tt.desc, n, s, len(tt.raw), tt.raw)
    		}
    
    		// Check for sticky errors.
    		if n, err := zr.Read([]byte{0}); n != 0 || err != io.EOF {
    			t.Errorf("%s: Read() = (%d, %v), want (0, io.EOF)", tt.desc, n, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 02:16:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top