Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 855 for SELF (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_input.py

      @tf.function(input_signature=[
          tf.TensorSpec([1], tf.float32),
          tf.TensorSpec([2], tf.float32)
      ])
      def f0000_function_arity(self, x, y):
        return
    
      # Check index paths for lists.
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}(
      # CHECK-SAME:   %arg0: tensor<f32> {tf._user_specified_name = "l", tf_saved_model.index_path = [0, 0]},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    												},
    											},
    											XValidations: apiextensions.ValidationRules{
    												{
    													Rule:              "true",
    													MessageExpression: `self[0] + self[1] + self[2] + self[3] + self[4] + self[5] + self[6] + self[7] + self[8]`,
    												},
    											},
    										},
    									},
    								},
    							},
    						},
    						{
    							Name: "v3", // new
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. hack/boilerplate/boilerplate_test.py

        """
    
        def test_boilerplate(self):
            os.chdir("test/")
    
            class Args:
                filenames = []
                rootdir = "."
                boilerplate_dir = "../"
                verbose = True
    
            # capture stdout
            old_stdout = sys.stdout
            sys.stdout = StringIO()
    
            boilerplate.args = Args
            ret = boilerplate.main()
            self.assertEqual(ret, 0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 09:05:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/serving_with_loopback.go

    		return nil
    	}
    
    	// create self-signed cert+key with the fake server.LoopbackClientServerNameOverride and
    	// let the server return it when the loopback client connects.
    	certPem, keyPem, err := certutil.GenerateSelfSignedCertKey(server.LoopbackClientServerNameOverride, nil, nil)
    	if err != nil {
    		return fmt.Errorf("failed to generate self-signed certificate for loopback connection: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 23 00:50:06 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. test/fixedbugs/issue52279.dir/lib.go

    	out := make(FMap[V, K])
    	return out
    }
    
    type MyType uint8
    
    const (
    	FIRST MyType = 0
    )
    
    var typeStrs = FMap[MyType, string]{
    	FIRST: "FIRST",
    }
    
    func (self MyType) String() string {
    	return typeStrs[self]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:15:31 UTC 2022
    - 321 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map
    	// are accessible via CEL macros and functions such as `self.all(...)`.
    	// If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and
    	// functions.
    	// If the Rule is scoped to a scalar, `self` is bound to the scalar value.
    	// Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/testdata/i22558.dlv-dbg.nexts

      ./testdata/i22558.go
    19:	func test(t *thing, u *thing) {
    20:		if t.next != nil {
    23:		fmt.Fprintf(os.Stderr, "%s\n", t.name)
    24:		u.self = u
    25:		t.self = t
    26:		t.next = u
    27:		for _, p := range t.stuff {
    28:			if isFoo(t, p) {
    29:				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 251 bytes
    - Viewed (0)
  8. security/pkg/pki/ca/ca_test.go

    		rootCertFile, false, rsaKeySize)
    	if err != nil {
    		t.Fatalf("Failed to create a self-signed CA Options: %v", err)
    	}
    
    	ca, err := NewIstioCA(caopts)
    	if err != nil {
    		t.Errorf("Got error while creating self-signed CA: %v", err)
    	}
    	if ca == nil {
    		t.Fatalf("Failed to create a self-signed CA.")
    	}
    
    	signingCert, _, certChainBytes, rootCertBytes := ca.GetCAKeyCertBundle().GetAll()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/testdata/i22558.gdb-dbg.nexts

      src/cmd/compile/internal/ssa/testdata/i22558.go
    19:	func test(t *thing, u *thing) {
    20:		if t.next != nil {
    23:		fmt.Fprintf(os.Stderr, "%s\n", t.name)
    24:		u.self = u
    25:		t.self = t
    26:		t.next = u
    27:		for _, p := range t.stuff {
    28:			if isFoo(t, p) {
    29:				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 19:09:17 UTC 2019
    - 278 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.0.0.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 365 bytes
    - Viewed (0)
Back to top