Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for RAW (0.09 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.Project.getBuildDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (Project.java:0)
    Method <org.gradle.api.Project.getBuildFile()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    					Name: scorePlugin1,
    					Args: &runtime.Unknown{
    						Raw: []byte(`{ "scoreRes": 1 }`),
    					},
    				},
    				{
    					Name: scoreWithNormalizePlugin1,
    					Args: &runtime.Unknown{
    						Raw: []byte(`{ "scoreRes": 3, "normalizeRes": 4}`),
    					},
    				},
    				{
    					Name: scoreWithNormalizePlugin2,
    					Args: &runtime.Unknown{
    						Raw: []byte(`{ "scoreRes": 4, "normalizeRes": 5}`),
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    		t.Fatal(err)
    	}
    	rows.Next()
    	rows.Scan(&raw) // this must not write to the driver-owned memory in raw
    	rows.Close()
    
    	// Repeat the first query. Nothing should have changed.
    	rows, err = db.Query("SELECT|people|name|")
    	if err != nil {
    		t.Fatal(err)
    	}
    	rows.Next()
    	rows.Scan(&raw) // raw points to driver-owned memory again
    	name2 := string(raw)
    	rows.Close()
    	if name1 != name2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    							Rows: []metav1.TableRow{
    								{Cells: []interface{}{"foo1", time.Unix(1, 0).UTC().Format(time.RFC3339)}, Object: runtime.RawExtension{Raw: encodedBody}},
    							},
    						}))),
    					},
    				},
    				{
    					Type: "MODIFIED",
    					Object: runtime.RawExtension{
    						Raw: []byte(strings.TrimSpace(runtime.EncodeOrDie(s, &metav1.Table{
    							TypeMeta: metav1.TypeMeta{Kind: "Table", APIVersion: "meta.k8s.io/v1beta1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	lastcols []driver.Value
    
    	// raw is a buffer for RawBytes that persists between Scan calls.
    	// This is used when the driver returns a mismatched type that requires
    	// a cloning allocation. For example, if the driver returns a *string and
    	// the user is scanning into a *RawBytes, we need to copy the string.
    	// The raw buffer here lets us reuse the memory for that copy across Scan calls.
    	raw []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	// except when it doesn't.
    	var icfg bytes.Buffer
    	fmt.Fprintf(&icfg, "# import config\n")
    	for i, raw := range p.Internal.RawImports {
    		final := p.Imports[i]
    		if final != raw {
    			fmt.Fprintf(&icfg, "importmap %s=%s\n", raw, final)
    		}
    	}
    	for _, a1 := range a.Deps {
    		p1 := a1.Package
    		if p1 == nil || p1.ImportPath == "" || a1.built == "" {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. samples/addons/grafana.yaml

    dashboard","url":"/dashboard/db/istio-workload-dashboard?var-workload=${__cell_2:raw}&var-namespace=${__cell_3:raw}"}]},{"id":"custom.align"}]},{"matcher":{"id":"byName","options":"destination_service"},"properties":[{"id":"displayName","value":"Service"},{"id":"unit","value":"short"},{"id":"decimals","value":2},{"id":"links","value":[{"targetBlank":false,"title":"$__cell dashboard","url":"/dashboard/db/istio-service-dashboard?var-service=${__cell_1:raw}"}]},{"id":"custom.align"},{"id":"custom.minWidth","value":40...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    	cert, err := ParseCertificate(p.Bytes)
    	if err != nil {
    		t.Fatalf("failed to parse certificate: %s", err)
    	}
    	if !bytes.Equal(p.Bytes, cert.Raw) {
    		t.Fatalf("unexpected Certificate.Raw\ngot: %x\nwant: %x\n", cert.Raw, p.Bytes)
    	}
    }
    
    // mismatchingSigAlgIDPEM contains a certificate where the Certificate
    // signatureAlgorithm and the TBSCertificate signature contain
    // mismatching OIDs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Hold current ND index in input tensor when computing
      // permutation.
      llvm::OwningArrayRef<uint64_t> current_input_index(
          input_tensor.getType().getRank());
    
      // Allocate raw data and retrieve address of the first char in its raw
      // buffer.
      llvm::OwningArrayRef<char> raw_output_arr(input_tensor.getRawData());
      char* raw_output = (char*)raw_output_arr.data();
    
      // Compute the result and write to `raw_output`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    obtained from concatenating a sequence of characters. There are two forms:
    raw string literals and interpreted string literals.
    </p>
    
    <p>
    Raw string literals are character sequences between back quotes, as in
    <code>`foo`</code>.  Within the quotes, any character may appear except
    back quote. The value of a raw string literal is the
    string composed of the uninterpreted (implicitly UTF-8-encoded) characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top