Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for raws (0.05 sec)

  1. pkg/controller/history/controller_history_test.go

    func rawTemplate(template *v1.PodTemplateSpec) runtime.RawExtension {
    	buf := new(bytes.Buffer)
    	enc := json.NewEncoder(buf)
    	if err := enc.Encode(template); err != nil {
    		panic(err)
    	}
    	return runtime.RawExtension{Raw: buf.Bytes()}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		uuidString := string(uuid.NewUUID())
    		sentinelName := "__ratcheting_sentinel_field__"
    		sch.Properties[sentinelName] = apiextensionsv1.JSONSchemaProps{
    			Type: "string",
    			Enum: []apiextensionsv1.JSON{{
    				Raw: []byte(`"` + uuidString + `"`),
    			}},
    		}
    
    		for _, v := range myCRD.Spec.Versions {
    			if v.Name != myCRDV1Beta1.Version {
    				continue
    			}
    			v.Schema.OpenAPIV3Schema = sch
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. internal/s3select/select_test.go

    		},
    		{
    			name:       "date_diff_month_neg",
    			query:      `SELECT date_diff(MONTH, '2020-01-20T', '2019-10-20T') FROM S3Object LIMIT 1`,
    			wantResult: `{"_1":-3}`,
    		},
    		// Examples from https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-glacier-select-sql-reference-date.html#s3-glacier-select-sql-reference-date-diff
    		{
    			name:       "date_diff_year",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator_test.go

    		assert.Equal(t, tc.resource.expectedUtilization, outUtilization, "utilization should be as expected")
    		assert.Equal(t, tc.resource.expectedValue, outRawValue, "raw value should be as expected")
    		assert.True(t, tc.timestamp.Equal(outTimestamp), "timestamp should be as expected")
    		return
    	}
    
    	var outReplicas int32
    	var outUsage int64
    	var outTimestamp time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  5. src/html/template/escape_test.go

    			// catch failures to filter out special tag names which
    			// would violate the structure preservation property --
    			// if any special tag name could be substituted, then
    			// the content could be raw text/RCDATA for some inputs
    			// and regular HTML content for others.
    			`<{{"script"}}>{{"doEvil()"}}</{{"script"}}>`,
    			`&lt;script>doEvil()&lt;/script>`,
    		},
    		{
    			"srcset bad URL in second position",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        if hasattr(value, '__module__'):
          if isinstance(value, dtypes.DType):
            return {TFRTypes.ATTR}
    
          # All the imported operations, which are not autograph built-ins, are
          # considered to be TF raw ops.
          # TODO(fengliuai): refine the condition that we only match TensorFlow
          # ops here.
          return {TFRTypes.TF_RAW_OP}
        # TODO(mdan): Is ATTR equivalent to string?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. common/scripts/metallb-native.yaml

    # Downloaded from https://github.com/metallb/metallb/raw/v0.13.12/config/manifests/metallb-native.yaml
    # With quay.io hub replaced with gcr.io/istio-testing
    # And probes tuned to startup faster
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        pod-security.kubernetes.io/audit: privileged
        pod-security.kubernetes.io/enforce: privileged
        pod-security.kubernetes.io/warn: privileged
      name: metallb-system
    ---
    apiVersion: apiextensions.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    type XcoffScnHdr64 struct {
    	Sname    [8]byte // Section Name
    	Spaddr   uint64  // Physical Address
    	Svaddr   uint64  // Virtual Address
    	Ssize    uint64  // Section Size
    	Sscnptr  uint64  // File Offset To Raw Data
    	Srelptr  uint64  // File Offset To Relocation
    	Slnnoptr uint64  // File Offset To Line Numbers
    	Snreloc  uint32  // Number Of Relocation Entries
    	Snlnno   uint32  // Number Of Line Number Entries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    	if len(peerCerts) == len(test.expectedPeerCerts) {
    		for i, peerCert := range peerCerts {
    			block, _ := pem.Decode([]byte(test.expectedPeerCerts[i]))
    			if !bytes.Equal(block.Bytes, peerCert.Raw) {
    				t.Fatalf("%s: mismatch on peer cert %d", test.name, i+1)
    			}
    		}
    	} else {
    		t.Fatalf("%s: mismatch on peer list length: %d (wanted) != %d (got)", test.name, len(test.expectedPeerCerts), len(peerCerts))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/net/http/request.go

    		// in TestParseMultipartFormOrder and others.
    	}
    	return
    }
    
    // ParseForm populates r.Form and r.PostForm.
    //
    // For all requests, ParseForm parses the raw query from the URL and updates
    // r.Form.
    //
    // For POST, PUT, and PATCH requests, it also reads the request body, parses it
    // as a form and puts the results into both r.PostForm and r.Form. Request body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top