Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 90 for 2345678 (0.18 sec)

  1. pkg/kubelet/apis/config/types.go

    	// - The URL path of an imageMatch must be a prefix of the target image URL path.
    	// - If the imageMatch contains a port, then the port must match in the image as well.
    	//
    	// Example values of matchImages:
    	//   - `123456789.dkr.ecr.us-east-1.amazonaws.com`
    	//   - `*.azurecr.io`
    	//   - `gcr.io`
    	//   - `*.*.registry.io`
    	//   - `registry.io:8080/path`
    	MatchImages []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

      auto zero = Const(scope, 0);
      auto one = Const(scope, 1);
    
      // The gradient can be expressed by dividing the product by each entry of
      // the input tensor. If our input is
      // [
      //  [3, 4],
      //  [5, 6],
      //  [7, 8]
      // ]
      // and we do a Prod operation on the axis 1, we will obtain [[105, 192]].
      // The gradient will have the same shape as the input
      //     [
      //       [105/3, 192/4],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. src/cmd/link/link_test.go

    		break
    	}
    	if !found {
    		t.Errorf("no LC_BUILD_VERSION load command found")
    	}
    }
    
    const Issue34788src = `
    
    package blah
    
    func Blah(i int) int {
    	a := [...]int{1, 2, 3, 4, 5, 6, 7, 8}
    	return a[i&7]
    }
    `
    
    func TestIssue34788Android386TLSSequence(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This is a cross-compilation test, so it doesn't make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    //                 |     |     |     |     |
    //                 -------     -------     |
    //                    |           |        |
    //                    5           6        |
    //                    |           |        |
    //                    -------------        |
    //                          |              |
    //                          7              |
    //                          |              |
    //                          ----------------
    //                                 |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    				}
    			}
    		})
    	}
    }
    
    var _i = 7
    
    var valueToStringTests = []pair{
    	{123, "123"},
    	{123.5, "123.5"},
    	{byte(123), "123"},
    	{"abc", "abc"},
    	{T{123, 456.75, "hello", &_i}, "reflect_test.T{123, 456.75, hello, *int(&7)}"},
    	{new(chan *T), "*chan *reflect_test.T(&chan *reflect_test.T)"},
    	{[10]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, "[10]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. cmd/xl-storage_test.go

    		shouldPass bool
    	}{
    		// Cases which should pass the test.
    		// passing in valid bucket names.
    		{"lol", true},
    		{"1-this-is-valid", true},
    		{"1-this-too-is-valid-1", true},
    		{"this.works.too.1", true},
    		{"1234567", true},
    		{"123", true},
    		{"s3-eu-west-1.amazonaws.com", true},
    		{"ideas-are-more-powerful-than-guns", true},
    		{"testbucket", true},
    		{"1bucket", true},
    		{"bucket1", true},
    		{"$this-is-not-valid-too", true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    tensor of rank `k+1` with dimensions [I, J, K, ..., N, N]` where:
    
    `output[i, j, k, ..., m, n] = 1{m=n} * diagonal[i, j, k, ..., n]`.
    
    For example:
    
    ```
    # 'diagonal' is [[1, 2, 3, 4], [5, 6, 7, 8]]
    
    and diagonal.shape = (2, 4)
    
    tf.matrix_diag(diagonal) ==> [[[1, 0, 0, 0]
                                         [0, 2, 0, 0]
                                         [0, 0, 3, 0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

      if [[ "${REMAINING_MASTER_COUNT}" -eq 0 ]]; then
        # Delete routes.
        local -a routes
        # Clean up all routes w/ names like "<cluster-name>-<node-GUID>"
        # e.g. "kubernetes-12345678-90ab-cdef-1234-567890abcdef". The name is
        # determined by the node controller on the master.
        # Note that this is currently a noop, as synchronously deleting the node MIG
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    			s.Spec.HealthCheckNodePort = 34567
    		},
    		numErrs: 1,
    	}, {
    		name: "cannot set healthCheckNodePort field on nodePort service",
    		tweakSvc: func(s *core.Service) {
    			s.Spec.Type = core.ServiceTypeNodePort
    			s.Spec.ExternalTrafficPolicy = core.ServiceExternalTrafficPolicyLocal
    			s.Spec.HealthCheckNodePort = 34567
    		},
    		numErrs: 1,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %0 = "tf.Conv2D"(%arg0, %arg1) {padding = "EXPLICIT", dilations = [1, 2, 3, 4], explicit_paddings = [1, 2, 3, 4, 5, 6, 7, 8], strides = [5, 6, 7, 8]} : (tensor<256x32x32x3xf32>, tensor<3x3x3x16xf32>) -> tensor<256x32x32x16xf32>
      func.return %0 : tensor<256x32x32x16xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top